Files
native-app/apps/mobile/app/(tabs)/index.tsx
2024-01-27 23:20:08 +01:00

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>
);
}