| 5 | import EditMCQ from "../mcq/EditMCQ"; |
| 6 | |
| 7 | interface AdminAddMCQProps extends Problem { |
| 8 | mcqQuestions: MCQQuestion[]; |
| 9 | } |
| 10 | |
| 11 | const AdminAddMCQ = ({ problem }: { problem: AdminAddMCQProps }) => { |
| 12 | const [mcqs, setMcqs] = useState<Omit<MCQQuestion, "id">[]>([]); |
nothing calls this directly
no outgoing calls
no test coverage detected