Skip to content

Instantly share code, notes, and snippets.

View TyrealGray's full-sized avatar

Tianrui Guo TyrealGray

View GitHub Profile
@TyrealGray
TyrealGray / configure-redux-store-example.md
Last active January 15, 2018 10:45
configure redux store

configure redux store example

import { AsyncStorage } from 'react-native';
import { createStore, applyMiddleware, combineReducers, compose } from 'redux';
import thunk from 'redux-thunk';
import { persistStore, autoRehydrate } from 'redux-persist';

import * as reducers from './reducers';

const reducer = combineReducers( reducers );