| 6 | import AdminAddMCQ from "./AdminAddMCQ"; |
| 7 | |
| 8 | interface AdminAddMCQProps extends Problem { |
| 9 | mcqQuestions: MCQQuestion[]; |
| 10 | } |
| 11 | |
| 12 | const AdminMCQ = () => { |
| 13 | const [Problems, setProblems] = useState<AdminAddMCQProps[]>([]); |
nothing calls this directly
no outgoing calls
no test coverage detected