-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
29 lines (22 loc) · 841 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import React from 'react';
// import { MyContextProvider } from './src/context/MyContext';
import Game from './game';
// import Sodaviews from './sodaviews'
// import ReactNativeFeatureFlags from 'react-native/Libraries/ReactNative/ReactNativeFeatureFlags';
// // enable the JS-side of the w3c PointerEvent implementation
// ReactNativeFeatureFlags.shouldEmitW3CPointerEvents = () => true;
// // enable hover events in Pressibility to be backed by the PointerEvent implementation
// ReactNativeFeatureFlags.shouldPressibilityUseW3CPointerEventsForHover =
// () => true;
const App = () => {
// const Game =lazy(()=>import ('./game'));
return (
// <Suspense fallback={null}>
// <MyContextProvider>
<Game />
// <Sodaviews />
// </MyContextProvider>
// </Suspense>
);
};
export default App;