main
Last change
on this file since faff334 was e903234, checked in by anastasovv <simon@…>, 2 years ago |
Added an admin panel, and the admin can now answer complaints
|
-
Property mode
set to
100644
|
File size:
479 bytes
|
Line | |
---|
1 | import { configureStore } from "@reduxjs/toolkit";
|
---|
2 |
|
---|
3 | import playerReducer from "./reducers/playerSlice";
|
---|
4 | import styleReducer from "./reducers/styleSlice";
|
---|
5 | import adminReducer from "./reducers/adminSlice";
|
---|
6 | import adminInformationReducer from "./reducers/adminInformationSlice";
|
---|
7 |
|
---|
8 | export 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.