export BazaarPageProps instead of HomePageProps

Signed-off-by: Brian Fletcher <brian@roadie.io>
This commit is contained in:
Brian Fletcher
2023-01-16 09:00:42 +00:00
parent 99d52523c7
commit c995e3d939
2 changed files with 8 additions and 8 deletions
+7 -7
View File
@@ -24,7 +24,13 @@ export type BazaarOverviewCardProps = {
};
// @public (undocumented)
export const BazaarPage: (props: HomePageProps) => JSX.Element;
export const BazaarPage: (props: BazaarPageProps) => JSX.Element;
// @public (undocumented)
export type BazaarPageProps = {
title?: string;
subtitle?: string;
};
// @public (undocumented)
export const bazaarPlugin: BackstagePlugin<
@@ -38,12 +44,6 @@ export const bazaarPlugin: BackstagePlugin<
// @public (undocumented)
export const EntityBazaarInfoCard: () => JSX.Element | null;
// @public (undocumented)
export type HomePageProps = {
title?: string;
subtitle?: string;
};
// @public (undocumented)
export const isBazaarAvailable: (
entity: Entity,
+1 -1
View File
@@ -20,4 +20,4 @@ export { BazaarOverviewCard } from './components/BazaarOverviewCard';
export type { BazaarOverviewCardProps } from './components/BazaarOverviewCard';
export { EntityBazaarInfoCard } from './components/EntityBazaarInfoCard';
export { SortView } from './components/SortView';
export type { HomePageProps } from './components/HomePage';
export type { HomePageProps as BazaarPageProps } from './components/HomePage';