From 715432ce71d8900fc6e0c657e35d2f0879890315 Mon Sep 17 00:00:00 2001 From: Kurt King Date: Fri, 22 Sep 2023 07:53:34 -0600 Subject: [PATCH] chore: remove alpha from import Signed-off-by: Kurt King --- docs/features/techdocs/addons.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/features/techdocs/addons.md b/docs/features/techdocs/addons.md index a41995c260..2e17891917 100644 --- a/docs/features/techdocs/addons.md +++ b/docs/features/techdocs/addons.md @@ -65,7 +65,7 @@ page in your `App.tsx`: // packages/app/src/App.tsx import { TechDocsReaderPage } from '@backstage/plugin-techdocs'; -import { TechDocsAddons } from '@backstage/plugin-techdocs-react/alpha'; +import { TechDocsAddons } from '@backstage/plugin-techdocs-react'; import { ReportIssue } from '@backstage/plugin-techdocs-module-addons-contrib'; // ... @@ -99,7 +99,7 @@ is very similar; instead of adding the `` registry under a import { EntityLayout } from '@backstage/plugin-catalog'; import { EntityTechdocsContent } from '@backstage/plugin-techdocs'; -import { TechDocsAddons } from '@backstage/plugin-techdocs-react/alpha'; +import { TechDocsAddons } from '@backstage/plugin-techdocs-react'; import { ReportIssue } from '@backstage/plugin-techdocs-module-addons-contrib'; // ... @@ -146,7 +146,7 @@ an Addon, follow these steps: import { createTechDocsAddonExtension, TechDocsAddonLocations, -} from '@backstage/plugin-techdocs-react/alpha'; +} from '@backstage/plugin-techdocs-react'; import { CatGifComponent, CatGifComponentProps } from './addons'; // ... @@ -179,7 +179,7 @@ provided by the Addon framework. // plugins/your-plugin/src/addons/MakeAllImagesCatGifs.tsx import React, { useEffect } from 'react'; -import { useShadowRootElements } from '@backstage/plugin-techdocs-react/alpha'; +import { useShadowRootElements } from '@backstage/plugin-techdocs-react'; // This is a normal react component; in order to make it an Addon, you would // still create and provide it via your plugin as described above. The only