Backstage
    Preparing search index...

    Interface NavContentComponentProps

    The props for the NavContentComponent.

    interface NavContentComponentProps {
        items: {
            icon: IconComponent;
            routeRef: RouteRef<undefined>;
            text: string;
            title: string;
            to: string;
        }[];
    }
    Index

    Properties

    Properties

    items: {
        icon: IconComponent;
        routeRef: RouteRef<undefined>;
        text: string;
        title: string;
        to: string;
    }[]

    The nav items available to the component. These are all the items created with the @backstage/frontend-plugin-api#NavItemBlueprint in the app.

    In addition to the original properties from the nav items, these also include a resolved route path as to, and duplicated title as text to simplify rendering.