silverstripe-framework/admin/client/src/components/Breadcrumb
2016-05-10 15:34:54 +12:00
..
tests Fixed case sensitive naming regressions 2016-04-26 15:32:09 +12:00
Breadcrumb.js Remove redux from breadcrumbs and fix breadcrumbs lazy loading 2016-05-10 15:34:54 +12:00
Breadcrumb.scss API Implement breadcrumbs via controllable state 2016-05-10 13:34:34 +12:00
README.md Toolbar renaming from north-header and move styles to component 2016-04-26 15:32:10 +12:00

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} />
}

...