Files
native-app/apps/mobile/app/(tabs)/index.tsx
Jorrin 89d1310eac help
2024-01-28 21:53:06 +01:00

11 lines
330 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 className="text-white">Movies will be listed here</Text>
</ScreenLayout>
);
}