Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

channel-doc.php.net.xml

Blame
  • 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,
      },
    });