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