diff --git a/App.js b/App.js index 84ff170..711e0a8 100644 --- a/App.js +++ b/App.js @@ -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