mirror of
https://github.com/zhigang1992/react-native-bottom-sheet.git
synced 2026-06-20 03:48:40 +08:00
13 lines
338 B
TypeScript
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);
|