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

14 lines
351 B
TypeScript

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