import { Fragment, useRef, useState } from 'react' import { Dialog, Transition } from '@headlessui/react' import { ExclamationTriangleIcon } from '@heroicons/react/24/outline' export default function Example() { const [open, setOpen] = useState(true) const cancelButtonRef = useRef(null) return (
Deactivate account

Are you sure you want to deactivate your account? All of your data will be permanently removed from our servers forever. This action cannot be undone.

) }