Files
native-app/apps/mobile/app/(tabs)/account.tsx
2024-01-23 21:56:17 +01:00

14 lines
379 B
TypeScript

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