Files
native-app/apps/mobile/app/(tabs)/index.tsx
2024-01-29 10:49:32 +01:00

11 lines
305 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>Movies will be listed here</Text>
</ScreenLayout>
);
}