mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 12:23:24 +00:00
14 lines
353 B
TypeScript
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>
|
|
);
|
|
}
|