Внутри вашей функции export const enqueueSnackbar = (notification) => {
у вас есть объект notification
, который имеет options
и variant
, которые вы можете использовать:
export const enqueueSnackbar = (notification) => {
const key = notification.options && notification.options.key;
const variant = notification.options && notification.options.variant;
console.log(variant);
console.log(notification);
return {
type: ENQUEUE_SNACKBAR,
notification: {
...notification,
key: key || new Date().getTime() + Math.random(),
},
};
};