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