Backstage
    Preparing search index...

    Variable AppRootWrapperBlueprintConst

    AppRootWrapperBlueprint: ExtensionBlueprint<
        {
            config: {};
            configInput: {};
            dataRefs: {
                component: ConfigurableExtensionDataRef<
                    (props: { children: ReactNode }) => Element | null,
                    "app.root.wrapper",
                    {},
                >;
            };
            inputs: {};
            kind: "app-root-wrapper";
            output: ExtensionDataRef<
                (props: { children: ReactNode }) => Element | null,
                "app.root.wrapper",
                {},
            >;
            params: {
                component: (props: { children: ReactNode }) => Element | null;
                Component?: [error: "Use the `component` parameter instead"];
            };
        },
    > = ...

    Creates a extensions that render a React wrapper at the app root, enclosing the app layout. This is useful for example for adding global React contexts and similar.