Skip to content

Breadcrumb

The Breadcrumb component renders Bulma’s breadcrumb navigation from a flat array of items. The last item is automatically marked as active.

<Breadcrumb
items={[
{ label: "Home", href: "/" },
{ label: "Ensembles", href: "/ensembles" },
{ label: "Chamber Orchestra" },
]}
/>
<Breadcrumb
items={[
{ label: "Home", href: "/" },
{ label: "Settings" },
]}
/>
<Breadcrumb items={[{ label: "Home" }]} />
PropTypeDefaultDescription
itemsArray<{ label: string; href?: string }>Required. Array of breadcrumb items. Last item is always active.