Created
March 6, 2022 12:02
-
-
Save larkintuckerllc/2fda6edc622c9f6d8548931a164120ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { createDevApp } from '@backstage/dev-utils'; | |
import { myPluginPlugin, EntityMyPluginContent } from '../src/plugin'; | |
createDevApp() | |
.registerPlugin(myPluginPlugin) | |
.addPage({ | |
element: <EntityMyPluginContent />, | |
title: 'Root Page', | |
path: '/my-plugin' | |
}) | |
.render(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment