Skip to main content

createSpecializedApp()

Home > @backstage/frontend-app-api > createSpecializedApp

Synchronous version of createApp(), expecting all features and config to have been loaded already.

Signature:

function createSpecializedApp(options?: {
icons?: {
[key in string]: IconComponent;
};
features?: FrontendFeature[];
config?: ConfigApi;
bindRoutes?(context: {
bind: CreateAppRouteBinder;
}): void;
}): {
createRoot(): JSX.Element;
};

Parameters

ParameterTypeDescription
options{ icons?: { [key in string]: IconComponent; }; features?: FrontendFeature[]; config?: ConfigApi; bindRoutes?(context: { bind: CreateAppRouteBinder; }): void; }(Optional)

Returns:

{ createRoot(): JSX.Element; }