import { Box, useMediaQuery, useTheme } from "@mui/material"; import { FC, useState } from "react"; import { StepButtonsBlock } from "../StepButtonsBlock/StepButtonsBlock"; import { CustomSelect } from "../../../../components/CustomSelect/CustomSelect"; type IntegrationStep2Props = { handlePrevStep: () => void; handleNextStep: () => void; }; export const IntegrationStep2: FC = ({ handlePrevStep, handleNextStep, }) => { const theme = useTheme(); const isMobile = useMediaQuery(theme.breakpoints.down(600)); const isTablet = useMediaQuery(theme.breakpoints.down(1000)); const [selectedItem, setSelectedItem] = useState(null); const itemsMock = [ "Ангелина Полякова", "Петр Иванов", "Алексей Звягинцев", "Никита Стрельцов", "Инна Ким", "Дмитрий Морозов", "Арсен Тадевосян", ]; return ( ); };