Review comments

This commit is contained in:
Oliver Sand
2021-01-29 12:35:26 +01:00
parent 1f1ad490cd
commit 9b78fb4bb6
4 changed files with 13 additions and 7 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ This plugin helps to visualize the domains and tools in your ecosystem.
To install the plugin, include the following import your `plugins.ts`:
```typescript
export { plugin as Ecosystem } from '@backstage/plugin-explore';
export { explorePlugin } from '@backstage/plugin-explore';
```
Add a link to the sidebar in `Root.tsx`:
@@ -21,9 +21,9 @@ import {
SupportButton,
useApi,
} from '@backstage/core';
import { exploreToolsConfigRef } from '@backstage/plugin-explore-react';
import React from 'react';
import { useAsync } from 'react-use';
import { exploreToolsConfigRef } from '../../../../explore-react/src';
import { ToolCardGrid } from '../ToolCard';
export const ToolExplorerContent = () => {