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