Some initial code

Signed-off-by: Jonathan Mezach <jonathan.mezach@rr-wfm.com>
This commit is contained in:
Jonathan Mezach
2023-02-15 10:19:39 +01:00
parent 4323348512
commit f9b1ec31f1
17 changed files with 415 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react';
import { createDevApp } from '@backstage/dev-utils';
import { octopusDeployPlugin, OctopusDeployPage } from '../src/plugin';
createDevApp()
.registerPlugin(octopusDeployPlugin)
.addPage({
element: <OctopusDeployPage />,
title: 'Root Page',
path: '/octopus-deploy'
})
.render();