diff --git a/frontend/components/Course/InstructorQueuePage/FinishConfirmModal.tsx b/frontend/components/Course/InstructorQueuePage/FinishConfirmModal.tsx new file mode 100644 index 00000000..872583e1 --- /dev/null +++ b/frontend/components/Course/InstructorQueuePage/FinishConfirmModal.tsx @@ -0,0 +1,34 @@ +import { Button, Modal } from "semantic-ui-react"; + +interface FinishConfirmModalProps { + onFinish: (forced?: boolean) => void; + onClose: () => void; + open: boolean; +} + +const FinishConfirmModal = (props: FinishConfirmModalProps) => { + const { onFinish, onClose, open } = props; + + return ( + + Finish Confirmation + + + You are about to finish a question that you did not start. + Is this intended? + + + +