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

11 lines
328 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>
);
}