A plain JavaScript toast notification library inspired by Sonner.
import { Sourdough, toast } from "sourdough-toast";
const sourdough = new Sourdough();
window.addEventListener("DOMContentLoaded", () => sourdough.boot());
toast("Saved");
toast("Pin this until I close it", { persist: true });MIT
