Files
react-native-bottom-sheet/example/index.ts
2021-02-20 10:57:19 +01:00

13 lines
338 B
TypeScript

import 'react-native-gesture-handler';
import { enableScreens } from 'react-native-screens';
enableScreens(true);
import { AppRegistry, LogBox } from 'react-native';
import App from './src/App';
import { name as appName } from './app.json';
LogBox.ignoreLogs(['react-native-maps']);
AppRegistry.registerComponent(appName, () => App);