File size: 720 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import { createSlice } from '@reduxjs/toolkit';
const initialState = {
profileData: null,
profileDataLoading: false,
profileDataErr: false,
};
const profileDataSlice = createSlice({
name: 'profileData',
initialState,
reducers: {
setProfileData: (state, action) => {
state.profileData = action.payload;
},
setProfileDataLoading: (state, action) => {
state.profileDataLoading = action.payload;
},
setProfileDataErr: (state, action) => {
state.profileDataErr = action.payload;
},
},
});
export const { setProfileData, setProfileDataLoading, setProfileDataErr } =
profileDataSlice.actions;
export default profileDataSlice.reducer;
|