diff --git a/.changeset/two-gorillas-drop.md b/.changeset/two-gorillas-drop.md new file mode 100644 index 0000000000..72de66dbff --- /dev/null +++ b/.changeset/two-gorillas-drop.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-explore': patch +--- + +Updated the example code in the "Customization" section of the README to make the imports match the components used. diff --git a/plugins/explore/README.md b/plugins/explore/README.md index a1cb273aab..24e6496cc3 100644 --- a/plugins/explore/README.md +++ b/plugins/explore/README.md @@ -104,11 +104,11 @@ Create a custom explore page in ```tsx import { - DomainExplorerContent, + CatalogKindExploreContent, ExploreLayout, } from '@backstage/plugin-explore'; import React from 'react'; -import { InnserSourceExplorerContent } from './InnserSourceExplorerContent'; +import { InnerSourceExploreContent } from './InnerSourceExploreContent'; export const ExplorePage = () => { return ( @@ -123,7 +123,7 @@ export const ExplorePage = () => { - + );