Files
native-app/apps/mobile/app/(tabs)/account.tsx
2024-01-27 13:53:41 +01:00

15 lines
349 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>
);
}