import { BaseModal } from './BaseModal' type Props = { isOpen: boolean handleClose: () => void } export const AboutModal = ({ isOpen, handleClose }: Props) => { return (

This is a honey powered fork of an open source word guessing game -{' '} check out the code here {' '} and{' '} the original code here {' '}

) }