Files
aso/frontend/dashboard/src/store/index.ts
Server D3 Linksehat 1bf608b1ed Server 103 Commit
2024-07-18 16:05:33 +07:00

15 lines
260 B
TypeScript
Executable File

import { configureStore } from '@reduxjs/toolkit';
import claims from "./claimsHistorySlice"
const store = configureStore({
reducer: {
claimsHistory: claims
// auth: authReducer,
// nav: navReducer
}
})
export default store