import { useRef } from 'react'; import { CSSTransition } from 'react-transition-group'; import styles from './ErrorModal.module.css'; const ErrorModal = ({ open, onClose }) => { const transitionRef = useRef(null); return (

Sorry! The server took too long to generate points for that game - your configurations may be too restrictive.

) }; export default ErrorModal;