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