Posted on

bdnk.fkj

import { configureStore } from '@reduxjs/toolkit';
import counterReducer from './features/counterSlice';

// Step 6: Create the store and add the counterReducer to it
export const store = configureStore({
  reducer: {
    counter: counterReducer // This will handle everything related to the counter
  }
});