king
2019-12-24 a859b8d276dcdc0a9a806498f4a6af845858e3a9
1
2
3
4
5
6
7
8
9
10
import {createStore, applyMiddleware} from 'redux'
import userReducer from './reducer'
import thunk from 'redux-thunk'
 
let store = createStore(
  userReducer,
  applyMiddleware(thunk)
)
 
export default store