They've changed their default settings, this changes a lot of stuff in our code base.
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
export const sendNotification = (data) => ({
|
|
type: "ADD_NOTIFICATION",
|
|
payload: data,
|
|
});
|
|
|
|
export const removeNotification = (id) => ({
|
|
type: "REMOVE_NOTIFICATION",
|
|
payload: { id },
|
|
});
|