Files
react-native-bottom-sheet/example/index.ts
2020-12-05 20:48:11 +01:00

11 lines
319 B
TypeScript

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