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
|
Rev | Line | |
---|
[87614a5] | 1 | import { configureStore } from "@reduxjs/toolkit";
|
---|
| 2 |
|
---|
| 3 | import playerReducer from "./reducers/playerSlice";
|
---|
| 4 | import styleReducer from "./reducers/styleSlice";
|
---|
[e903234] | 5 | import adminReducer from "./reducers/adminSlice";
|
---|
| 6 | import adminInformationReducer from "./reducers/adminInformationSlice";
|
---|
[87614a5] | 7 |
|
---|
| 8 | export const store = configureStore({
|
---|
| 9 | reducer: {
|
---|
| 10 | player: playerReducer,
|
---|
| 11 | style: styleReducer,
|
---|
[e903234] | 12 | admin: adminReducer,
|
---|
| 13 | adminInformation: adminInformationReducer,
|
---|
[87614a5] | 14 | },
|
---|
| 15 | }) |
---|
Note:
See
TracBrowser
for help on using the repository browser.