mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:43:25 +00:00
13 lines
373 B
TypeScript
13 lines
373 B
TypeScript
import ScreenLayout from '../../components/layout/ScreenLayout';
|
|
import { RegularText } from '../../components/ui/Text';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<ScreenLayout title="Home" subtitle="This is where all magic happens">
|
|
<RegularText className="text-white">
|
|
Movies will be listed here
|
|
</RegularText>
|
|
</ScreenLayout>
|
|
);
|
|
}
|