Changeset e903234 for redux


Ignore:
Timestamp:
07/17/22 09:43:05 (23 months ago)
Author:
anastasovv <simon@…>
Branches:
main
Children:
faff334
Parents:
e007fcd
Message:

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

Location:
redux
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • redux/store.js

    re007fcd re903234  
    33import playerReducer from "./reducers/playerSlice";
    44import styleReducer from "./reducers/styleSlice";
     5import adminReducer from "./reducers/adminSlice";
     6import adminInformationReducer from "./reducers/adminInformationSlice";
    57
    68export const store = configureStore({
     
    810        player: playerReducer,
    911        style: styleReducer,
     12        admin: adminReducer,
     13        adminInformation: adminInformationReducer,
    1014    },
    1115})
Note: See TracChangeset for help on using the changeset viewer.