mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-29 00:59:40 +07:00
13 lines
219 B
TypeScript
13 lines
219 B
TypeScript
import { View, Text } from "react-native";
|
|
import React from "react";
|
|
|
|
const ResetPasswordPage = () => {
|
|
return (
|
|
<View>
|
|
<Text>ResetPasswordPage</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default ResetPasswordPage;
|