blob: d4f313c0555c0c5b16fe30a160ec8a0b2cecf4e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { createSlice } from '@reduxjs/toolkit';
const { reducer, actions } = createSlice({
name: 'events',
initialState: {
items: [],
},
reducers: {
add(state, action) {
state.items.unshift(...action.payload);
},
delete(state, action) {
state.items = state.items.filter((item) => item.id !== action.payload.id);
},
deleteAll(state) {
state.items = [];
},
},
});
export { actions as eventsActions };
export { reducer as eventsReducer };
|