Small name refactoring and improvement to dev

Signed-off-by: Karan Shah <karan.shah@simplybusiness.co.uk>
This commit is contained in:
Karan Shah
2021-12-29 17:14:24 +00:00
parent c9ccdbbf12
commit 98a40195c1
6 changed files with 14 additions and 11 deletions
+6 -3
View File
@@ -15,7 +15,7 @@
*/
import React from 'react';
import { createDevApp } from '@backstage/dev-utils';
import { AirbrakePage, airbrakePlugin } from '../src/plugin';
import { AirbrakeWidget, airbrakePlugin } from '../src/plugin';
import {
Content,
ContentHeader,
@@ -30,7 +30,10 @@ createDevApp()
.addPage({
element: (
<Page themeId="tool">
<Header title="Airbrake" subtitle="Errors in your application">
<Header
title="Airbrake demo application"
subtitle="Test the widget below"
>
<HeaderLabel label="Owner" value="Owner" />
<HeaderLabel label="Lifecycle" value="Alpha" />
</Header>
@@ -40,7 +43,7 @@ createDevApp()
A description of your plugin goes here.
</SupportButton>
</ContentHeader>
<AirbrakePage />
<AirbrakeWidget />
</Content>
</Page>
),