import React, { useState } from 'react'
import { Button, Dialog } from 'playbook-ui'
const DialogLoading = () => {
const [isOpen, setIsOpen] = useState(false)
const close = () => {
if (!isLoading) {
setIsOpen(false)
}
}
const open = () => setIsOpen(true)
const [isLoading, setIsLoading] = useState(false)
const submit = async () => {
setIsLoading(true)
try {
await new Promise((r) => setTimeout(r, 3000))
setIsOpen(false)
} catch (error) {
console.error("An error occurred.")
} finally {
setIsLoading(false)
}
}
return (
<>
>
)
}
export default DialogLoading