feat: github issues plugin mvp

Signed-off-by: Kamil Wolny <mrwolny@gmail.com>
This commit is contained in:
Kamil Wolny
2022-07-28 14:35:54 +01:00
parent c7dd03bf96
commit c9c6bf3932
35 changed files with 1770 additions and 20 deletions
+27
View File
@@ -0,0 +1,27 @@
/*
* Copyright 2022 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 { gitHubIssuesPlugin, GitHubIssuesPage } from '../src/plugin';
createDevApp()
.registerPlugin(gitHubIssuesPlugin)
.addPage({
element: <GitHubIssuesPage />,
title: 'Root Page',
path: '/github-issues',
})
.render();