mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-09 17:23:18 +08:00
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
import { Platform } from 'react-native';
|
|
import { useScreens } from 'react-native-screens';
|
|
|
|
// Uncomment this to use react-native-screens
|
|
// if (Platform.OS === 'android') {
|
|
// useScreens();
|
|
// }
|
|
|
|
import App from './js/App';
|
|
export default App;
|