/** @format */ import React from "react"; import { ToastContainer } from "react-toastify"; interface ToastProps { position?: | "top-right" | "top-center" | "top-left" | "bottom-right" | "bottom-center" | "bottom-left"; autoClose?: number | false; newestOnTop?: boolean; closeOnClick?: boolean; pauseOnFocusLoss?: boolean; draggable?: boolean; } const Toast = ({ position, autoClose, newestOnTop, closeOnClick, pauseOnFocusLoss, draggable, }: ToastProps) => { return ( ); }; export default Toast;