Files
native-app/apps/mobile/app/(tabs)/index.tsx
2024-01-27 13:53:41 +01:00

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