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