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;
        }[];
        navItems: NavContentNavItems;
    }
    Index

    Properties

    Properties

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

    Flat list of nav items for simple rendering. Use navItems for more control over item placement.

    Use navItems instead.

    Nav items auto-discovered from page extensions, with take/rest semantics for placing specific items in specific positions.