remove unused import

Signed-off-by: Morgan <mbentell@spotify.com>
This commit is contained in:
Morgan
2022-10-25 16:39:57 +02:00
parent 1a22b5f1b1
commit 5878dcd120
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import React, { ReactNode, Children, ReactElement, ReactChild } from 'react';
import React, { ReactNode, Children, ReactElement } from 'react';
import { useOutlet } from 'react-router-dom';
import { Page } from '@backstage/core-components';
@@ -35,14 +35,6 @@ import {
useRouteRefParams,
} from '@backstage/core-plugin-api';
type Extension = ReactChild & {
type: {
__backstage_data: {
map: Map<string, boolean>;
};
};
};
/**
* Props for {@link TechDocsReaderLayout}
* @public