Skip to content

Instantly share code, notes, and snippets.

@emanueleDiVizio
Created June 8, 2020 14:50
Show Gist options
  • Save emanueleDiVizio/df12e001b8cbb0fc4e02150ed6d5c468 to your computer and use it in GitHub Desktop.
Save emanueleDiVizio/df12e001b8cbb0fc4e02150ed6d5c468 to your computer and use it in GitHub Desktop.
import { createStore, combineReducers } from 'redux'
import { reducer as network } from 'react-native-offline';
const rootReducer = combineReducers({
// ... your other reducers here ...
network,
});
const store = createStore(rootReducer);
export default store;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment