lab 8 p6/7 done

This commit is contained in:
2026-04-23 16:49:22 +10:00
parent 80e4415e44
commit cb7fecffc9
5 changed files with 65 additions and 32 deletions

View File

@@ -0,0 +1,13 @@
import { configureStore } from '@reduxjs/toolkit';
import listsReducer from './testing/features/quizSlice';
const store = configureStore({
reducer: {
lists: listsReducer,
},
});
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
export default store;