import {Dialog, Transition} from "@headlessui/react"; import {Fragment} from "react"; import Button from "./Low/Button"; interface Props { isOpen: boolean; onClose: () => void; } export default function TimerEndedModal({isOpen, onClose}: Props) { return (
Time's up! The timer has ended! Your answers have been registered and saved, you will now move on to the next module (or to the finish screen, if this was the last one).
); }