Files
native-app/apps/mobile/app/(tabs)/index.tsx
2024-01-22 22:43:19 +01:00

13 lines
373 B
TypeScript

import ScreenLayout from '../../components/layout/ScreenLayout';
import { RegularText } from '../../components/ui/Text';
export default function HomeScreen() {
return (
<ScreenLayout title="Home" subtitle="This is where all magic happens">
<RegularText className="text-white">
Movies will be listed here
</RegularText>
</ScreenLayout>
);
}