import { Box } from "@mui/material"; import { FirstNodeField } from "./FirstNodeField"; import { CsComponent } from "./CsComponent"; import { useQuestionsStore } from "@root/questions/store" import { useCurrentQuiz } from "@root/quizes/hooks"; export const BranchingMap = () => { const quiz = useCurrentQuiz(); const { dragQuestionId } = useQuestionsStore() return ( { quiz?.config.haveRoot ? : } ); };