Files
react-native-bottom-sheet/example/index.ts
2020-12-17 23:27:59 +01:00

7 lines
210 B
TypeScript

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