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 7import { OrgSettingsPage } from "./OrgSettingsPage"; 8import { OIDCClients } from "./sso/OIDCClients"; 9 10export default function SSO() { 11 return ( 12 <OrgSettingsPage> 13 <OIDCClients /> 14 </OrgSettingsPage> 15 ); 16} 17 18