import styles from './Overlay.module.css'; import useKeyPress from '../../hooks/useKeyPress'; const Overlay = ({ children, handleOverlayClose }) => { useKeyPress('Escape', handleOverlayClose); return