Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/teams/GitIntegrationsPage.tsx
2501 views
1
/**
2
* Copyright (c) 2023 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
import { GitIntegrations } from "./git-integrations/GitIntegrations";
8
import { OrgSettingsPage } from "./OrgSettingsPage";
9
10
export default function GitAuthPage() {
11
return (
12
<OrgSettingsPage>
13
<GitIntegrations />
14
</OrgSettingsPage>
15
);
16
}
17
18