import * as React from "react"; import BranchingQuestions from "../branchingQuestions"; import SettingOpytionsPict from "./settingOpytionsPict"; import HelpQuestions from "../helpQuestions"; interface Props { switchState: string; totalIndex: number; } export default function SwitchAnswerOptionsPict({ switchState = "setting", totalIndex, }: Props) { switch (switchState) { case "setting": return ; break; case "help": return ; break; case "branching": return ; break; default: return <>; } }