| 123456789101112131415161718192021 |
- import React from 'react';
- import { View, Text } from 'react-native';
- export default function TestingPage() {
- return (
- <View>
- <Text
- className="bg-black text-center text-white"
- // style={{
- // textAlign: 'center',
- // backgroundColor: 'black',
- // color: 'white'
- // }}
- >
- This area only exist in dev mode
- </Text>
- {/* Put Test Component Below */}
- {/* ... */}
- </View>
- );
- }
|