"use client" import type { ExamLockAnswerValue, ExamLockDeliveryQuestion, } from "./exam-lock-delivery-types" import { isExamLockDeliveryImplemented } from "./exam-lock-delivery-types" import { ExamLockEssayQuestion } from "./exam-lock-essay-question" import { ExamLockFillBlankQuestion } from "./exam-lock-fill-blank-question" import { ExamLockMcqQuestion } from "./exam-lock-mcq-question" import { ExamLockTrueFalseQuestion } from "./exam-lock-true-false-question" export interface ExamLockQuestionRendererProps { question: ExamLockDeliveryQuestion value: ExamLockAnswerValue onValueChange: (value: ExamLockAnswerValue) => void eliminatedOptions?: readonly string[] onToggleEliminated?: (option: string) => void shortcutsDisabled?: boolean } function ExamLockDeliveryPlaceholder({ type }: { type: string }) { return (
{type} delivery
Renderer not yet implemented in Design OS.