import { observer } from "mobx-react-lite"; // hooks import { useApplication } from "hooks/store"; import useIntegrationPopup from "hooks/use-integration-popup"; // ui import { Button } from "@plane/ui"; // types import { IWorkspaceIntegration } from "@plane/types"; type Props = { workspaceIntegration: false | IWorkspaceIntegration | undefined; provider: string | undefined; }; export const GithubAuth: React.FC = observer(({ workspaceIntegration, provider }) => { // store hooks const { config: { envConfig }, } = useApplication(); // hooks const { startAuth, isConnecting } = useIntegrationPopup({ provider, github_app_name: envConfig?.github_app_name || "", slack_client_id: envConfig?.slack_client_id || "", }); return (
{workspaceIntegration && workspaceIntegration?.id ? ( ) : ( )}
); });