import { ToastBtn } from "./ToastBtn";
export default function RootLayout() {
return (
<html lang="en">
<body>
<ToastBtn />
</body>
</html>
);
}
import { ToastContainer, toast } from "react-toastify";
export const ToastBtn = () => {
const notify = () => toast("Wow so easy !");
return (
<div className="grid place-items-center h-dvh bg-zinc-900/15">
<button onClick={notify}>Notify !</button>
<ToastContainer stacked position="bottom-center" />
</div>
);
};