Skip to main content

AppComponents

Home > @backstage/core-plugin-api > AppComponents

A set of replaceable core components that are part of every Backstage app.

Signature:

export type AppComponents = {
NotFoundErrorPage: ComponentType<PropsWithChildren<{}>>;
BootErrorPage: ComponentType<BootErrorPageProps>;
Progress: ComponentType<PropsWithChildren<{}>>;
Router: ComponentType<PropsWithChildren<{
basename?: string;
}>>;
ErrorBoundaryFallback: ComponentType<ErrorBoundaryFallbackProps>;
ThemeProvider?: ComponentType<PropsWithChildren<{}>>;
SignInPage?: ComponentType<SignInPageProps>;
};

References: BootErrorPageProps, ErrorBoundaryFallbackProps, SignInPageProps