import Toastify from 'toastify-js'; import 'toastify-js/src/toastify.css'; import { IToastify } from './toastTypes'; export function showToast(content: string, options?: IToastify) { Toastify({ text: content, position: 'center', duration: 2000, style: { color: '#333', fontSize: '14px', background: 'rgba(255,255,255,0.9)', }, ...options, }).showToast(); }