web_react/admin_dashboard/client/src/state/index.js
2024-04-02 20:30:24 -05:00

19 lines
No EOL
458 B
JavaScript

import { createSlice } from "@reduxjs/toolkit";
const initialState = {
mode: "dark",
userId: "63701cc1f03239b7f700000f", //63701cc1f03239b7f700000e
};
export const globalSlice = createSlice({
name: "global",
initialState,
reducers: {
setMode: (state) => {
state.mode = state.mode === 'light' ? "dark" : "light";
},
},
});
export const {setMode} = globalSlice.actions;
export default globalSlice.reducer;