AppComponents
Home > @backstage/core-app-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