import { Box, Typography } from "@mui/material"; import CustomCheckbox from "@ui_kit/CustomCheckbox"; import { questionStore, updateQuestionsList } from "@root/questions"; import InfoIcon from "../../../assets/icons/InfoIcon"; type SettingsUploadProps = { totalIndex: number; }; export default function SettingsUpload({ totalIndex }: SettingsUploadProps) { const { listQuestions } = questionStore(); return ( Настройки вопроса { const clonContent = listQuestions[totalIndex].content; clonContent.autofill = target.checked; updateQuestionsList(totalIndex, { content: clonContent }); }} /> ); }