NavContentComponentProps.items
Home > @backstage/frontend-plugin-api
> NavContentComponentProps
> items
The nav items available to the component. These are all the items created with the 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.
Signature:
items: Array<{
icon: IconComponent;
title: string;
routeRef: RouteRef<undefined>;
to: string;
text: string;
}>;