index.tsx 575 B

123456789101112131415161718192021
  1. import React from 'react';
  2. import { View, Text } from 'react-native';
  3. export default function TestingPage() {
  4. return (
  5. <View>
  6. <Text
  7. className="bg-black text-center text-white"
  8. // style={{
  9. // textAlign: 'center',
  10. // backgroundColor: 'black',
  11. // color: 'white'
  12. // }}
  13. >
  14. This area only exist in dev mode
  15. </Text>
  16. {/* Put Test Component Below */}
  17. {/* ... */}
  18. </View>
  19. );
  20. }