assistant-note/src/redux/store.js

9 lines
260 B
JavaScript
Raw Normal View History

2024-01-12 00:13:58 -05:00
import { configureStore } from '@reduxjs/toolkit'
import historyReducer from './historyRecord_reducer'
// 用于支持异步函数
// import thunk from 'redux-thunk'
export default configureStore({
reducer: {
historyRecord:historyReducer
}
})