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, } export default function SwitchOptionsAndPict({switchState = 'setting' }: Props) { switch (switchState) { case 'setting': return (); break; case 'help': return (); break case 'branching': return (); break; case 'image': return (); break; default: return (<>) } }