mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
27 lines
388 B
Markdown
27 lines
388 B
Markdown
# 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} />
|
|
}
|
|
|
|
...
|
|
```
|