28 lines
621 B
TypeScript
28 lines
621 B
TypeScript
|
|
"use client"
|
|
import { Button } from "@/components/ui/button"
|
|
import { ToastAction } from "@/components/ui/toast"
|
|
import { useToast } from "@/components/ui/use-toast"
|
|
|
|
const BasicToast = () => {
|
|
const { toast } = useToast()
|
|
return (
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => {
|
|
toast({
|
|
title: "Scheduled: Catch up ",
|
|
description: "Friday, February 10, 2023 at 5:57 PM",
|
|
action: (
|
|
<ToastAction altText="Goto schedule to undo">Undo</ToastAction>
|
|
),
|
|
})
|
|
}}
|
|
>
|
|
Add to calendar
|
|
</Button>
|
|
)
|
|
}
|
|
export default BasicToast;
|
|
|