blob: 9bdcdccc0800217a13f2b7816fefa049e260d270 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import React, {Suspense} from 'react';
import {SafeAreaView, View} from 'react-native';
import {GestureHandlerRootView} from 'react-native-gesture-handler';
import {AppView} from './src/AppView';
import {Provider as JotaiProvider} from 'jotai';
const App: React.FC = () => {
return (
<Suspense fallback={<View className="flex flex-1 bg-black" />}>
<JotaiProvider>
<GestureHandlerRootView>
<SafeAreaView className="flex flex-1 bg-black text-slate-200">
<AppView key="view" />
</SafeAreaView>
</GestureHandlerRootView>
</JotaiProvider>
</Suspense>
);
};
export default App;
|