geothermie-atlas/redux/ampelkarteGWWPSlice.js

21 lines
451 B
JavaScript
Raw Permalink Normal View History

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