18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
import { ToastContainer } from "react-toastify";
|
|
import "react-toastify/dist/ReactToastify.css";
|
|
|
|
const ToastProvider = () => {
|
|
return (
|
|
<ToastContainer
|
|
position="bottom-right"
|
|
autoClose={3000}
|
|
newestOnTop
|
|
closeOnClick
|
|
pauseOnHover={false}
|
|
theme="colored"
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default ToastProvider;
|