Update readme

This commit is contained in:
Oliver Sand
2021-02-03 09:36:53 +01:00
parent 07c84067bf
commit 8878e0acf5
+10
View File
@@ -11,6 +11,16 @@ To install the plugin, include the following import your `plugins.ts`:
export { explorePlugin } from '@backstage/plugin-explore';
```
Register the route in `App.tsx`:
```typescript
import { ExplorePage } from '@backstage/plugin-explore';
...
<Route path="/explore" element={<ExplorePage />} />
```
Add a link to the sidebar in `Root.tsx`:
```typescript