27 lines
399 B
Markdown
Raw Normal View History

2016-03-18 14:42:45 +13:00
#NorthHeaderBreadcrumbs
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} />
2016-03-18 14:42:45 +13:00
}
...
```