mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-24 09:08:15 +00:00
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
import { Platform } from 'react-native';
|
|
import { useScreens } from 'react-native-screens';
|
|
|
|
if (Platform.OS === 'android') {
|
|
// useScreens();
|
|
}
|
|
|
|
import App from './js/App';
|
|
export default App;
|