This commit is contained in:
Jorrin
2024-01-28 21:53:06 +01:00
parent 8977e3ea2c
commit 89d1310eac
8 changed files with 180 additions and 151 deletions

View File

@@ -1,4 +1,4 @@
import { Text } from 'react-native';
import { Text } from '../components/ui/Text';
import ScreenLayout from '../components/layout/ScreenLayout';

View File

@@ -1,11 +1,10 @@
import { Text } from 'react-native';
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>
<Text className="text-white">Movies will be listed here</Text>
</ScreenLayout>
);
}