mkm-modal-permissions
v2.0.3
Published
Component to display UI permissions modal
Readme
Introduction
Componet to display permissions.

Getting Started
Install via npm
npm install mkm-modal-permissionsBuild 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} />
);
}