Skip to content
Snippets Groups Projects
Select Git revision
  • 8976f3a273f84fcba2faeb293251f244a7b8c465
  • master default protected
2 results

store.js

Blame
  • Forked from SOFT Core / SOFT 260 / React Redux Starter Code
    Source project has a limited visibility.
    store.js 223 B
    import { configureStore } from '@reduxjs/toolkit';
    import counterSlice from '../features/counter/counterSlice.js';
    
    export const store = configureStore({
      reducer: {
        [counterSlice.name]: counterSlice.reducer,
      },
    });