test.tsx 179 B

123456789
  1. import { View, Text } from 'react-native';
  2. export default function Test() {
  3. return (
  4. <View className="flex-1">
  5. <Text>Test</Text>
  6. </View>
  7. );
  8. }