(state, action)
| 9 | initialState: defaultState, |
| 10 | reducers: { |
| 11 | setActiveModal(state, action) { |
| 12 | state.activeModal = action.payload; |
| 13 | }, |
| 14 | hideModal(state) { |
| 15 | state.activeModal = undefined; |
| 16 | }, |
no outgoing calls
no test coverage detected
searching dependent graphs…