mirror of
https://github.com/zhigang1992/react-native-bottom-sheet.git
synced 2026-04-28 20:25:36 +08:00
11 lines
319 B
TypeScript
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);
|