import { Dialog, Transition } from '@headlessui/react' import { ExclamationIcon } from '@heroicons/react/outline' import { Fragment, useRef, useState } from 'react' export default function Example() { const [open, setOpen] = useState(false) 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.

{Array(20) .fill(null) .map((_, i) => (

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.

))}
) }