2025-10-31 23:09:46 +01:00

11 lines
248 B
TypeScript

import { Text, View } from "react-native";
export default function Index() {
return (
<View className="flex-1 justify-center items-center">
<Text className="text-5xl text-primary font-bold text-center">Test </Text>
</View>
);
}