import { QuizQuestionSelect } from "@model/questionTypes/select"; import HelpQuestions from "../helpQuestions"; import SettingDropDown from "./settingDropDown"; interface Props { switchState: string; question: QuizQuestionSelect; } export default function SwitchDropDown({ switchState = "setting", question, }: Props) { switch (switchState) { case "setting": return ; case "help": return ; default: return <>; } }