"use client"; import { RenderComponentWithSnippet } from "@/app/components/render"; import { useState } from "react"; import { Button } from "@calcom/ui/components/button"; import { Dialog, DialogClose, DialogContent, DialogFooter } from "@calcom/ui/components/dialog"; export const BasicExample: React.FC = () => { const [open, setOpen] = useState(false); return (

Dialogs are used to display content that requires user attention or interaction. They appear above the page content and must be closed before interacting with the page again.

); };