blog / themes /plog /components /PlogModal.js
sandy-try's picture
Upload 699 files
1b72d7e verified
raw
history blame contribute delete
811 Bytes
import { useState } from 'react'
import { Dialog } from '@headlessui/react'
/**
* 图片弹出模态框
*/
export default function PlogModal(props) {
const [isOpen, setIsOpen] = useState(true)
return (
<Dialog open={isOpen} onClose={() => setIsOpen(false)}>
<Dialog.Panel>
<Dialog.Title>Deactivate account</Dialog.Title>
<Dialog.Description>
This will permanently deactivate your account
</Dialog.Description>
<p>
Are you sure you want to deactivate your account? All of your data
will be permanently removed. This action cannot be undone.
</p>
<button onClick={() => setIsOpen(false)}>Deactivate</button>
<button onClick={() => setIsOpen(false)}>Cancel</button>
</Dialog.Panel>
</Dialog>
)
}