1.0.8 • Published 6 years ago
mkm-component-tags v1.0.8
Introduction
Componet to display tags.
Getting Started
Install via npm
npm install mkm-component-tags
Build and Test
Run build
npm run build
Run tests
npm test
Usage
Example usage:
render() {
let tags = [
{ title: 'Tag 1' },
{ title: 'Tag 2' },
{ title: 'Tag 3' }
],
return (
<Tags title="Tags" tags={tags} />
);
}