mirror of
https://github.com/zhigang1992/reactNativeScreenAndroidTouchIssue.git
synced 2026-02-02 16:27:51 +08:00
13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './App';
|
|
import {name as appName} from './app.json';
|
|
import { useScreens } from 'react-native-screens';
|
|
|
|
useScreens();
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|