Files
native-app/apps/expo/src/app/(tabs)/account.tsx
2024-02-03 20:33:27 +01:00

14 lines
338 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>
);
}