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