9 lines
260 B
JavaScript
9 lines
260 B
JavaScript
|
import { configureStore } from '@reduxjs/toolkit'
|
||
|
import historyReducer from './historyRecord_reducer'
|
||
|
// 用于支持异步函数
|
||
|
// import thunk from 'redux-thunk'
|
||
|
export default configureStore({
|
||
|
reducer: {
|
||
|
historyRecord:historyReducer
|
||
|
}
|
||
|
})
|