AppContext
Home > @backstage/core-app-api > AppContext
The central context providing runtime app specific state that plugin views want to consume.
Signature:
export type AppContext = {
    getPlugins(): BackstagePlugin[];
    getSystemIcon(key: string): IconComponent | undefined;
    getSystemIcons(): Record<string, IconComponent>;
    getComponents(): AppComponents;
};
References: BackstagePlugin, IconComponent, AppComponents