import { FC } from "react"; // types import { IIntegrationData } from "components/integration"; type Props = { state: IIntegrationData; handleState: (key: string, valve: any) => void }; export const GithubIssuesSelect: FC = ({ state, handleState }) => (
Issues Select
);