Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save full-stack-concepts/64de2bf2572f38d033e2f6d79b676e21 to your computer and use it in GitHub Desktop.
Save full-stack-concepts/64de2bf2572f38d033e2f6d79b676e21 to your computer and use it in GitHub Desktop.
import { combineReducers } from "redux";
import { configureStore } from "@reduxjs/toolkit";
import UserSlice from './UserSlice';
const rootReducer = combineReducers({
user: UserSlice
});
export const store = configureStore({
reducer: rootReducer,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment