import {Box, IconButton, Paper} from "@mui/material"; import CustomTextField from "@ui_kit/CustomTextField"; import ExpandMoreIcon from "@mui/icons-material/ExpandMore"; import OneIcon from "@icons/questionsPage/OneIcon"; import PointsIcon from "@icons/questionsPage/PointsIcon"; import TypeQuestions from "./TypeQuestions"; import SwitchQuestionsPage from "./SwitchQuestionsPage"; import React from "react"; interface Props { switchState: string; SSHC: (data: string) => void; } export default function QuestionsPageCard({ SSHC, switchState }: Props) { return ( {" "} {" "} {switchState.length === 0 ? : } ) }