vaulterm/frontend/pages/auth/reset-password.tsx

13 lines
219 B
TypeScript
Raw Normal View History

2024-11-14 18:50:58 +07:00
import { View, Text } from "react-native";
import React from "react";
const ResetPasswordPage = () => {
return (
<View>
<Text>ResetPasswordPage</Text>
</View>
);
};
export default ResetPasswordPage;