project setup

This commit is contained in:
Sone
2025-11-02 10:00:53 +01:00
parent 75bd171804
commit 7cb4c5345e
51 changed files with 3616 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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;