Skip to content

Commit

Permalink
add helper info
Browse files Browse the repository at this point in the history
  • Loading branch information
GantMan committed Aug 27, 2017
1 parent 24f7384 commit 4354a93
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@ import React from 'react'
import { StyleSheet, View } from 'react-native'
import { Provider } from 'react-redux'
import createStore from './Redux'
import AppNavigation from './Navigation/AppNavigation'
/*
* Both of the following files work for react-navigation
* Routes will always be added and supported by modifying
* the AppNavigation file. Special redux actions/reducers
* will be handled in Redux Navigation
* // use this to use react-navigation no redux
* import AppNavigation from './Navigation/AppNavigation'
*
* // use this to use react-navigation with redux
* import ReduxNavigation from './Navigation/ReduxNavigation'
*/

// We're going to use navigation with redux
import ReduxNavigation from './Navigation/ReduxNavigation'

// create our store
Expand Down

0 comments on commit 4354a93

Please sign in to comment.