mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
.. | ||
tests | ||
Breadcrumb.js | ||
Breadcrumb.scss | ||
README.md |
Breadcrumb
The breadcrumbs for the current section of the CMS.
Props
Crumbs (array)
An array of objects, each object should have a text
and href
key.
let breadcrumbs = [
{
text: 'Pages',
href: 'admin/pages'
},
{
text: 'About us',
href: 'admin/pages/show/2'
}
];
<BreadcrumbComponent crumbs={breadcrumbs} />
}
...