import { toast } from "react-toastify"; import { intl } from "src/locale"; import { Msg } from "./Msg"; import styles from "./Msg.module.css"; const showSuccess = (message: string) => { toast(Msg, { className: styles.toaster, data: { type: "success", title: intl.formatMessage({ id: "notification.success" }), message, }, }); }; const showError = (message: string) => { toast(, { data: { type: "error", title: intl.formatMessage({ id: "notification.error" }), message, }, }); }; export { showSuccess, showError };