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