This commit is contained in:
2026-04-24 13:41:54 +10:00
parent 2df7ed36de
commit a144621365
12 changed files with 295 additions and 86 deletions

15
site/src/store.tsx Normal file
View File

@@ -0,0 +1,15 @@
import { configureStore } from '@reduxjs/toolkit';
import listsReducer from './quiz/features/quizSlice';
const store = configureStore({
reducer: {
quiz: listsReducer,
},
devTools: { trace: true ,traceLimit: 25},
});
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
export default store;