Preview: spacing.js
Size: 440 B
//proc/thread-self/root/home/byroehnu/easetack.com/resources/js/Redux/features/Customize/spacing.js
import {createSlice} from "@reduxjs/toolkit";
const initialState = {
top: {
lg: 0,
md: 0
},
bottom: {
lg: 0,
md: 0
}
}
const spacingSlice = createSlice({
name: "spacing",
initialState,
reducers: {
updateSpacing(state, action){
state = action.payload
}
}
})
export default spacingSlice.reducer;
export const {updateSpacing} = spacingSlice.actions
Directory Contents
Dirs: 0 × Files: 1