match-curriculum / react-todo-app-starter-files / src / app / store.js
store.js
Raw
import { configureStore } from '@reduxjs/toolkit';
import todoReducer from '../slices/todoSlice';

export const store = configureStore({
  reducer: {
    todo: todoReducer,
  },
});