Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import { createStackNavigator } from 'react-navigation-stack';
  2.  
  3. import actions from "./actions"
  4. import reducer from "./reducer"
  5.  
  6. import HomeScreen from './scenes/Home'
  7.  
  8. const InstructionStack = createStackNavigator({
  9. Home:{
  10. screen: HomeScreen,
  11. navigationOptions: ({ navigation }) => ({
  12. title: `Instructions`,
  13. }),
  14. }
  15. });
  16.  
  17.  
  18. export {actions, reducer, InstructionStack}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement