Files
native-app/apps/mobile/app/(tabs)/account.tsx
2024-01-29 10:09:00 +01:00

14 lines
353 B
TypeScript

import { Text } from '../components/ui/Text';
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>
);
}