import { notify } from "react-notify-toast"; import { colorMessage } from "./constants"; const magaShowMessage = (status: number, time: number, message: string) => { let color; switch (true) { case status < 400: color = colorMessage.success; break; case status >= 400 && status < 500: color = colorMessage.warn; break; default: color = colorMessage.error; } notify.show(message, "custom", time, color); }; export default magaShowMessage;