import {Dialog, Transition} from "@headlessui/react"; import {Fragment} from "react"; import Button from "./Low/Button"; interface Props { isOpen: boolean; onClose: (next?: boolean) => void; } export default function BlankQuestionsModal({isOpen, onClose}: Props) { return ( onClose(false)} className="relative z-50">
Questions Unanswered Please note that you are finishing the current module and once you proceed to the next module, you will no longer be able to change the answers in the current one, including your unanswered questions.

Are you sure you want to continue without completing those questions?
); }