iOS version: 10.3
Model: iPhone 7+ not an emulator
Hi, somehow I cannot integrate with redux. more information below. I'm getting following error screen
here is my store module
import { createNavigationEnabledStore, NavigationReducer } from '@expo/ex-navigation';
import { combineReducers, createStore } from 'redux';
const createStoreWithNavigation = createNavigationEnabledStore({
createStore,
navigationStateKey: 'navigation',
});
const store = createStoreWithNavigation(
/* combineReducers and your normal create store things here! */
combineReducers({
navigation: NavigationReducer,
// other reducers
})
);
export default store;
iOS version: 10.3 Model: iPhone 7+ not an emulator Hi, somehow I cannot integrate with redux. more information below. I'm getting following error screen here is my store module
and router module
index module which is combining both
And I'm using create-react-native-app. Using all of these
can you help me?