index.tsx 500 B

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