Files
menui_web/src/reducers/notifications.js
Jonasz Bigda d2842a1db3 web client v0.5
//notifications
//delete restaurant
//change picture
//redesigned data store
2020-09-27 18:40:39 +02:00

13 lines
349 B
JavaScript

const notifications = (state = [], action) => {
switch (action.type) {
case "ENQUEUE_SNACKBAR":
return [...state, { key: action.key, ...action.notification }];
case "REMOVE_SNACKBAR":
return state.filter((notification) => notification.key !== action.key);
default:
return state;
}
};
export default notifications;