Toast
Install
Section titled “Install”npx stylesheet-ui add toastMount <Toaster /> once at the app root:
import { Toaster } from "@/components/ui/toast";
export default function RootLayout() { return ( <ThemeProvider> <Stack /> <Toaster /> </ThemeProvider> );}Then call toast from anywhere:
import { toast } from "@/components/ui/toast";
toast.show("Saved to drafts");toast.success("Payment confirmed");toast.error({ title: "Couldn't sync", description: "Check your network." });