Created
June 19, 2019 17:50
-
-
Save just1and0/5e7130b15062c1fa11e9a5bc07dbbea6 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 Users from './src/Users' | |
import Details from './src/Details' | |
const AppNavigator = createStackNavigator({ | |
Users: { | |
screen: Users, | |
navigationOptions:{headerTitle:'Users'} | |
}, | |
Details: { | |
screen: Details, | |
navigationOptions:{headerTitle:'Users Detail'} | |
} | |
}); | |
export default createAppContainer(AppNavigator); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment