Under development DO NOT USE
import { toast, ToastContainer } from "svelte-toastify";toast.configure({
position: "top-right"
});<main>
<div>Your App </div>
<ToastContainer />
</main>Import toast in you component
import { toast } from "svelte-toastify";To Fire a toast
toast.success("This is a success message");
toast.error("This is an error message");
toast.info("This is an info message");
toast.warn("This is an warning message");