公告板
版本库
filestore
活动
搜索
登录
金飞
/
mob
移动端-android、H5
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
mob init
king
2020-07-20
2dc12c551cd60f2e3c976ed608d260b1d78ce759
[~jinfei/mob.git]
/
src
/
store
/
index.js
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