blob: 1852a040d71635e59a33987927f7eab4ea5d000b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import React from 'react';
import {SafeAreaView} from 'react-native';
import {GestureHandlerRootView} from 'react-native-gesture-handler';
import {View} from './src/View';
const App: React.FC = () => {
return (
<GestureHandlerRootView>
<SafeAreaView className="flex flex-1 bg-black">
<View />
</SafeAreaView>
</GestureHandlerRootView>
);
};
export default App;
|