mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
16 lines
421 B
TypeScript
16 lines
421 B
TypeScript
import ScreenLayout from '../../components/layout/ScreenLayout';
|
|
import { RegularText } from '../../components/ui/Text';
|
|
|
|
export default function AccountScreen() {
|
|
return (
|
|
<ScreenLayout
|
|
title="Account"
|
|
subtitle="Manage your movie web account from here"
|
|
>
|
|
<RegularText className="text-white">
|
|
Hey Bro! what are you up to?
|
|
</RegularText>
|
|
</ScreenLayout>
|
|
);
|
|
}
|