remove unnecessary classes

This commit is contained in:
Jorrin
2024-01-29 10:49:32 +01:00
parent a7608b878d
commit cf17593b57
5 changed files with 7 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ 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>
<Text>Movies will be listed here</Text>
</ScreenLayout>
);
}