Rezi
    Preparing search index...

    Function routerBreadcrumb

    • Render a breadcrumb widget backed by router history.

      Type Parameters

      • S

      Parameters

      • router: RouterApi
      • routes: readonly Readonly<
            {
                children?: readonly Readonly<
                    (
                        { id: string; screen: (params: Readonly<Record<string, string>>, context: Readonly<{ router: RouterApi; state: Readonly<S>; update: (updater: S | ((prev: Readonly<S>) => S)) => void; outlet: VNode | null; }>) => VNode; guard?: RouteGuard<...>; children?: readonly Readonly<...>[]; title?: string; keybinding?: string; }
                    ),
                >[];
                guard?: RouteGuard<S>;
                id: string;
                keybinding?: string;
                screen: (params: RouteParams, context: RouteRenderContext<S>) => VNode;
                title?: string;
            },
        >[]
      • props: RouterBreadcrumbProps = {}

      Returns VNode