Files
shadcn-ui/apps/v4/examples/base/sonner-basic.tsx
2026-01-14 09:25:14 +04:00

15 lines
283 B
TypeScript

import { Button } from "@/examples/base/ui/button"
import { toast } from "sonner"
export function SonnerBasic() {
return (
<Button
onClick={() => toast("Event has been created")}
variant="outline"
className="w-fit"
>
Show Toast
</Button>
)
}