Last active
July 25, 2020 08:35
-
-
Save andreferi3/ddcca45a94f77bcfde832ff18af2cc40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import AppContainer from '../Navigation/AppNavigation' | |
| import NavigationServices from '../Navigation/NavigationServices' | |
| class RootContainer extends Component { | |
| render() { | |
| return ( | |
| <View style={styles.applicationView}> | |
| <StatusBar barStyle='light-content' /> | |
| <AppContainer ref={ref => NavigationServices.setTopLevelNavigator(ref)} /> | |
| </View> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment