Files
nearle_console/src/components/third-party/OpenToast.js
2026-05-13 17:48:36 +05:30

10 lines
259 B
JavaScript

import { enqueueSnackbar } from 'notistack';
export const OpenToast = (message, color, time) => {
return enqueueSnackbar(message, {
variant: color,
anchorOrigin: { vertical: 'top', horizontal: 'right' },
autoHideDuration: time || 2000
});
};