• Given the list of all block routes and block props, this hook will return an array of breadcrumbs for the current matched page, performing any async loading needed for page titles.

    Parameters

    Returns {
        href: string;
        name: string;
        pageTitleHandler: undefined | ((t) => string) | {
            fallback: ((t) => string);
            fetch: ((blockProps, t, updatePageTitle) => void);
        };
        text: string;
    }[]

Generated using TypeDoc