Files
backstage/plugins/explore
Patrik Oldsberg 1a22f83c28 Merge pull request #4647 from backstage/dependabot/npm_and_yarn/testing-library/react-11.2.5
chore(deps): bump @testing-library/react from 10.4.3 to 11.2.5
2021-03-01 18:17:08 +01:00
..
2021-02-03 09:37:55 +01:00
2021-02-23 10:31:40 +01:00
2021-02-03 09:37:55 +01:00

explore

Welcome to the explore plugin! This plugin helps to visualize the domains and tools in your ecosystem.

Getting started

To install the plugin, include the following import your plugins.ts:

export { explorePlugin } from '@backstage/plugin-explore';

Register the route in App.tsx:

import { ExplorePage } from '@backstage/plugin-explore';

...

<Route path="/explore" element={<ExplorePage />} />

Add a link to the sidebar in Root.tsx:

import LayersIcon from '@material-ui/icons/Layers';

...

<SidebarItem icon={LayersIcon} to="explore" text="Explore" />