28 lines
708 B
TypeScript
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>
|
|
);
|
|
}
|