Files
shadcn-ui/apps/www/registry/default/example/toast-simple.tsx
2023-06-22 22:44:52 +04:00

22 lines
403 B
TypeScript

"use client"
import { Button } from "@/registry/default/ui/button"
import { useToast } from "@/registry/default/ui/use-toast"
export default function ToastSimple() {
const { toast } = useToast()
return (
<Button
variant="outline"
onClick={() => {
toast({
description: "Your message has been sent.",
})
}}
>
Show Toast
</Button>
)
}