Files
shadcn-ui/apps/www/components/examples/toast/simple.tsx
2023-04-17 19:19:40 +04:00

22 lines
383 B
TypeScript

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