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