fix dev page for iLert plugin

Signed-off-by: yacut <roman.rogozhnikov@gmail.com>
This commit is contained in:
yacut
2021-05-03 16:51:44 +02:00
parent a2e74f11da
commit 078e4457a2
+2 -2
View File
@@ -16,12 +16,12 @@
import React from 'react';
import { createDevApp } from '@backstage/dev-utils';
import { ilertPlugin } from '../src/plugin';
import { IlertPage } from '../src';
import { ILertPage } from '../src';
createDevApp()
.registerPlugin(ilertPlugin)
.addPage({
element: <IlertPage />,
element: <ILertPage />,
title: 'Root Page',
})
.render();