Rename scorecards plugin to tech-insights plugin

Signed-off-by: irma12 <irma@roadie.io>
This commit is contained in:
irma12
2021-11-26 13:51:43 +01:00
parent b5bd60fddc
commit 1f455f8abb
23 changed files with 93 additions and 79 deletions
+30
View File
@@ -0,0 +1,30 @@
/*
* Copyright 2021 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { createDevApp } from '@backstage/dev-utils';
import {
techInsightsPlugin,
EntityTechInsightsScorecardContent,
} from '../src/plugin';
createDevApp()
.registerPlugin(techInsightsPlugin)
.addPage({
element: <EntityTechInsightsScorecardContent />,
title: 'Root Page',
path: '/tech-insight-scorecard',
})
.render();