core-api,plugins/graphiql: export extension APIs from core-api and port the graphiql plugin

Co-authored-by: blam <ben@blam.sh>
This commit is contained in:
Patrik Oldsberg
2020-12-08 15:56:34 +01:00
parent 797d170873
commit ad66d1c8c4
5 changed files with 19 additions and 4 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ import { hot } from 'react-hot-loader/root';
import { providers } from './identityProviders';
import { Router as CatalogRouter } from '@backstage/plugin-catalog';
import { Router as DocsRouter } from '@backstage/plugin-techdocs';
import { Router as GraphiQLRouter } from '@backstage/plugin-graphiql';
import { GraphiQLPage } from '@backstage/plugin-graphiql';
import { Router as TechRadarRouter } from '@backstage/plugin-tech-radar';
import { Router as LighthouseRouter } from '@backstage/plugin-lighthouse';
import { Router as RegisterComponentRouter } from '@backstage/plugin-register-component';
@@ -81,7 +81,7 @@ const AppRoutes = () => (
path="/tech-radar"
element={<TechRadarRouter width={1500} height={800} />}
/>
<Route path="/graphiql" element={<GraphiQLRouter />} />
<Route path="/graphiql" element={<GraphiQLPage />} />
<Route path="/lighthouse/*" element={<LighthouseRouter />} />
<Route
path="/register-component"