geothermie-atlas/redux/cadastreSlice.js

21 lines
443 B
JavaScript
Raw Normal View History

2023-10-19 09:07:33 +00:00
import { createSlice } from "@reduxjs/toolkit";
const initialState = {
value: {},
};
export const counterSlice = createSlice({
name: "cadastre",
initialState,
reducers: {
updateCadastralData: (state, action) => {
state.value = action.payload;
},
},
});
// Action creators are generated for each case reducer function
export const { updateCadastralData } = counterSlice.actions;
export default counterSlice.reducer;