mobilemk/app/signin.tsx
2024-12-27 11:23:48 +01:00

12 lines
186 B
TypeScript

import { View, Text } from "react-native";
import React from "react";
const SignIn = () => {
return (
<View>
<Text>Sign In</Text>
</View>
);
};
export default SignIn;