Files
shadcn-ui/apps/www/components/examples/toast/simple.tsx
2023-02-10 10:03:52 +04:00

23 lines
376 B
TypeScript

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