source: redux/store.js

main
Last change on this file was e903234, checked in by anastasovv <simon@…>, 23 months ago

Added an admin panel, and the admin can now answer complaints

  • Property mode set to 100644
File size: 479 bytes
Line 
1import { configureStore } from "@reduxjs/toolkit";
2
3import playerReducer from "./reducers/playerSlice";
4import styleReducer from "./reducers/styleSlice";
5import adminReducer from "./reducers/adminSlice";
6import adminInformationReducer from "./reducers/adminInformationSlice";
7
8export const store = configureStore({
9 reducer: {
10 player: playerReducer,
11 style: styleReducer,
12 admin: adminReducer,
13 adminInformation: adminInformationReducer,
14 },
15})
Note: See TracBrowser for help on using the repository browser.