interface NavigationComponentProps {
    blockProps: BlockComponentProps;
    breadcrumbs: {
        href: string;
        text: string;
    }[];
    children: ReactNode;
}

Properties

Props for the current block being displayed

breadcrumbs: {
    href: string;
    text: string;
}[]

List of breadcrumbs to display for the current page

Type declaration

  • href: string
  • text: string
children: ReactNode

The page to render inside of the navigation component

Generated using TypeDoc