Files
2026-07-13 13:32:57 +08:00

28 lines
708 B
TypeScript

import {
DialogHeader,
Dialog,
DialogContent,
DialogDescription,
DialogTitle,
DialogTrigger,
} from "~/components/primitives/Dialog";
export default function Story() {
return (
<div className="grid h-full place-items-center p-20">
<Dialog>
<DialogTrigger>Open</DialogTrigger>
<DialogContent>
<DialogHeader>
<DialogTitle>Are you sure absolutely sure?</DialogTitle>
</DialogHeader>
<DialogDescription>
This action cannot be undone. This will permanently delete your account and remove your
data from our servers.
</DialogDescription>
</DialogContent>
</Dialog>
</div>
);
}