Files
dev-connect/client/src/reducers/alert.js
T
2023-05-08 16:45:49 +00:00

20 lines
403 B
JavaScript

import { SET_ALERT, REMOVE_ALERT } from '../actions/types';
const initialState = [];
function alertReducer(state = initialState, action) {
const { type, payload } = action;
switch (type) {
case SET_ALERT:
return [...state, payload];
case REMOVE_ALERT:
return state.filter((alert) => alert.id !== payload);
default:
return state;
}
}
export default alertReducer;