mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
24 lines
471 B
TypeScript
24 lines
471 B
TypeScript
"use client"
|
|
|
|
import { Button } from "@/examples/base/ui/button"
|
|
import { toast } from "sonner"
|
|
|
|
export function SonnerDemo() {
|
|
return (
|
|
<Button
|
|
variant="outline"
|
|
onClick={() =>
|
|
toast("Event has been created", {
|
|
description: "Sunday, December 03, 2023 at 9:00 AM",
|
|
action: {
|
|
label: "Undo",
|
|
onClick: () => console.log("Undo"),
|
|
},
|
|
})
|
|
}
|
|
>
|
|
Show Toast
|
|
</Button>
|
|
)
|
|
}
|