king
2022-09-26 1624c0e1c946ccc9320b98c182af1b2447c1ceb0
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