@veecode-platform/backstage-plugin-tenant-explorer
Version:
20 lines (17 loc) • 752 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { convertLegacyRouteRef } from '@backstage/core-compat-api';
import { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';
import { rootRouteRef } from '../routes.esm.js';
import { isTenantKind } from '../hooks/useTenantKind.esm.js';
const TenantOverviewTabContent = EntityContentBlueprint.make({
name: "entity",
params: {
defaultPath: "overview",
defaultTitle: "Tenant Overview",
filter: isTenantKind,
routeRef: convertLegacyRouteRef(rootRouteRef),
loader: () => import('../components/OverviewPage/index.esm.js').then((m) => /* @__PURE__ */ jsx(m.TenantOverview, {}))
}
});
export { TenantOverviewTabContent };
//# sourceMappingURL=entityContent.esm.js.map