import React from "react";
import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
export interface Props {
  error: any;
}
const Toaster = () => {
  return (
    <div>
      <ToastContainer />
    </div>
  );
};
export default Toaster;
