mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-15 20:01:35 +00:00
15 lines
283 B
TypeScript
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>
|
|
)
|
|
}
|