11 lines
248 B
TypeScript
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>
|
|
);
|
|
}
|