import { Box, useMediaQuery, useTheme } from "@mui/material"; import { FC } from "react"; import { StepButtonsBlock } from "../StepButtonsBlock/StepButtonsBlock"; import { CustomSelect } from "../../../../components/CustomSelect/CustomSelect"; import { CustomRadioGroup } from "../../../../components/CustomRadioGroup/CustomRadioGroup"; type IntegrationStep2Props = { handlePrevStep: () => void; handleNextStep: () => void; selectedPipelinePerformer: string | null; setSelectedPipelinePerformer: (value: string | null) => void; selectedPipeline: string | null; setSelectedPipeline: (value: string | null) => void; }; export const IntegrationStep2: FC = ({ handlePrevStep, handleNextStep, selectedPipelinePerformer, setSelectedPipelinePerformer, selectedPipeline, setSelectedPipeline, }) => { const theme = useTheme(); const isMobile = useMediaQuery(theme.breakpoints.down(600)); const isTablet = useMediaQuery(theme.breakpoints.down(1000)); return ( ); };