mirror of
https://github.com/outline/outline.git
synced 2025-12-20 10:09:43 -06:00
22 lines
595 B
TypeScript
22 lines
595 B
TypeScript
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import Button, { type Props } from "~/components/Button";
|
|
import useCurrentTeam from "~/hooks/useCurrentTeam";
|
|
import { redirectTo } from "~/utils/urls";
|
|
import { GitHubUtils } from "../../shared/GitHubUtils";
|
|
|
|
export function GitHubConnectButton(props: Props<HTMLButtonElement>) {
|
|
const { t } = useTranslation();
|
|
const team = useCurrentTeam();
|
|
|
|
return (
|
|
<Button
|
|
onClick={() => redirectTo(GitHubUtils.authUrl(team.id))}
|
|
neutral
|
|
{...props}
|
|
>
|
|
{t("Connect")}
|
|
</Button>
|
|
);
|
|
}
|