Merge pull request #23346 from drodil/migrate_local_dev

chore: migrate to new backend in local development
This commit is contained in:
Patrik Oldsberg
2024-04-14 13:49:28 +02:00
committed by GitHub
20 changed files with 295 additions and 342 deletions
+4 -3
View File
@@ -15,13 +15,14 @@
*/
import React from 'react';
import { createDevApp } from '@backstage/dev-utils';
import { notificationsPlugin } from '../src/plugin';
import { NotificationsPage, notificationsPlugin } from '../src/plugin';
import { NotificationsSidebarItem } from '../src';
createDevApp()
.registerPlugin(notificationsPlugin)
.addPage({
element: <div />,
title: 'Root Page',
element: <NotificationsPage />,
path: '/notifications',
})
.addSidebarItem(<NotificationsSidebarItem />)
.render();