Introduction
Componet to display permissions.
Getting Started
Install via npm
npm install mkm-modal-permissions
Build and Test
Run build
npm run build
Run tests
npm test
Usage
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} />
);
}