mirror of
https://github.com/zhigang1992/react-native-bottom-sheet.git
synced 2026-06-12 17:08:54 +08:00
7 lines
210 B
TypeScript
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);
|