import { FunctionComponent } from 'react' import { AlertDialogLabel } from '@reach/alert-dialog' type Props = { closeDialog: () => void className?: string } const ModalDialogLabel: FunctionComponent = ({ children, closeDialog, className }) => (
{children}
Close

) export default ModalDialogLabel