File size: 772 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 32 33 34 35 36 37 38 39 40 |
import { createSlice } from '@reduxjs/toolkit';
const initialState = {
cvImg: '',
title: '',
tags: [],
MDEValue: '',
};
const PostDataSlice = createSlice({
name: 'postData',
initialState,
reducers: {
setTitleToStore: (state, action) => {
state.title = action.payload;
},
setCvImgToStore: (state, action) => {
state.cvImg = action.payload;
},
setTagsToStore: (state, action) => {
state.tags = action.payload;
},
setMDEValueToStore: (state, action) => {
state.MDEValue = action.payload;
},
},
});
export const {
setCvImgToStore,
setTitleToStore,
setTagsToStore,
setMDEValueToStore,
} = PostDataSlice.actions;
export default PostDataSlice.reducer;
|