1.0.26 • Published 7 years ago
mkm-component-breadcrumbs v1.0.26
Introduction
Componet to display breadcrumbs.

Getting Started
Install via npm
npm install mkm-component-breadcrumbsBuild and Test
Run build
npm run buildRun tests
npm testUsage
Example usage:
render() {
let paths = [
{
name: "Path 1",
active: false,
url: '#/path1'
},
{
name: "Path 2",
active: false,
url: '#/path2'
},
{
name: "Path 3 active",
active: true,
url: 'javascript:;'
}
];
return (
<Breadcrumbs paths={paths} />
);
}