mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 10:23:24 +00:00
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
import { Text } from 'react-native';
|
|
|
|
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>
|
|
);
|
|
}
|