mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
19 lines
533 B
TypeScript
19 lines
533 B
TypeScript
import { StyleSheet, Text } from 'react-native';
|
|
|
|
import { globalStyles } from '../../styles/global';
|
|
import ScreenLayout from '../../components/layout/screenLayout';
|
|
import { RegularText } from '../../components/Styled';
|
|
|
|
export default function AccountScreen() {
|
|
return (
|
|
<ScreenLayout
|
|
title="Account"
|
|
subtitle="Manage your movie web account from here"
|
|
>
|
|
<RegularText style={globalStyles.textWhite}>
|
|
Hey Bro! what are you up to?
|
|
</RegularText>
|
|
</ScreenLayout>
|
|
);
|
|
}
|