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

Guess the word in 6 tries. After each guess, the color of the tiles will change to show how close your guess was to the word.

The letter W is in the word and in the correct spot.

The letter L is in the word but in the wrong spot.

The letter U is not in the word in any spot.

This is an open source version of the word guessing game we all know and love -{' '} check out the code here {' '}

) }