blob: 483323f3e9b18dc1864ee8688e9922e967512f07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { createSlice } from '@reduxjs/toolkit';
const { reducer, actions } = createSlice({
name: 'groups',
initialState: {
items: {},
},
reducers: {
update(state, action) {
action.payload.forEach(item => state.items[item['id']] = item);
},
}
});
export { actions as groupsActions };
export { reducer as groupsReducer };
|