import { Fragment } from 'react' import { Dialog, Transition } from '@headlessui/react' import { XCircleIcon } from '@heroicons/react/outline' type Props = { isOpen: boolean handleClose: () => void } export const AboutModal = ({ isOpen, handleClose }: Props) => { return (
{/* This element is to trick the browser into centering the modal contents. */}
handleClose()} />
About

This is an open source clone of the game Wordle -{' '} check out the code here {' '} and{' '} play the original here

) }