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