lab 8 p6/7 done
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user