import BranchingQuestions from "../branchingQuestions"; import HelpQuestions from "../helpQuestions"; import SettingPageOptions from "./SettingPageOptions"; interface Props { switchState: string; totalIndex: number; } export default function SwitchPageOptions({ switchState = "setting", totalIndex, }: Props) { switch (switchState) { case "setting": return ; break; case "help": return ; break; case "branching": return ; break; default: return <>; } }