Files
native-app/apps/mobile/app/(tabs)/index.tsx
2024-01-23 21:56:17 +01:00

11 lines
333 B
TypeScript

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