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