Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created March 6, 2022 12:02
Show Gist options
  • Save larkintuckerllc/2fda6edc622c9f6d8548931a164120ac to your computer and use it in GitHub Desktop.
Save larkintuckerllc/2fda6edc622c9f6d8548931a164120ac to your computer and use it in GitHub Desktop.
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