Files
native-app/apps/mobile/app/(tabs)/account.tsx
2024-01-27 23:20:08 +01:00

15 lines
346 B
TypeScript

import { Text } from 'react-native';
import ScreenLayout from '../components/layout/ScreenLayout';
export default function AccountScreen() {
return (
<ScreenLayout
title="Account"
subtitle="Manage your movie web account from here"
>
<Text>Hey Bro! what are you up to?</Text>
</ScreenLayout>
);
}