UNPKG

@roadiehq/backstage-plugin-argo-cd

Version:
21 lines (18 loc) 742 B
import { jsx } from 'react/jsx-runtime'; import { EntityCardBlueprint } from '@backstage/plugin-catalog-react/alpha'; const entityArgoCDOverviewCard = EntityCardBlueprint.make({ name: "overviewCard", params: { filter: "kind:component", loader: () => import('../components/ArgoCDDetailsCard.esm.js').then((m) => /* @__PURE__ */ jsx(m.ArgoCDDetailsCard, {})) } }); const entityArgoCDHistoryCard = EntityCardBlueprint.make({ name: "historyCard", params: { filter: "kind:component", loader: () => import('../components/ArgoCDHistoryCard.esm.js').then((m) => /* @__PURE__ */ jsx(m.ArgoCDHistoryCard, {})) } }); export { entityArgoCDHistoryCard, entityArgoCDOverviewCard }; //# sourceMappingURL=entityCards.esm.js.map