Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/repositories/detail/ConfigurationDetailEditors.tsx
2501 views
1
/**
2
* Copyright (c) 2024 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 { FC } from "react";
8
import { Configuration } from "@gitpod/public-api/lib/gitpod/v1/configuration_pb";
9
import { ConfigurationWorkspaceEditorsOptions } from "./editors/ConfigurationWorkspaceEditorsOptions";
10
11
interface Props {
12
configuration: Configuration;
13
}
14
export const ConfigurationDetailEditors: FC<Props> = ({ configuration }) => {
15
return <ConfigurationWorkspaceEditorsOptions configuration={configuration} />;
16
};
17
18