# TagsInput

[NPM](https://www.npmjs.com/package/@propellerads/tags-input) |
[Github](https://github.com/propellerads/ui-components/tree/master/Components/TagsInput)

## Installation
* `yarn add @propellerads/tags-input` or `npm install @propellerads/tags-input -S`

### How to use
* `import TagsInput from '@propellerads/tags-input';`
* And render 
```
<TagsInput
    elementId="tags-input-default-view"
    options={options}
    onChange={(value) => {
        setStateValue(value);
    }}
    value={stateValue}
    placeholder="Check 'Notes' section for viewing data examples..."
    isMulti
/>
```
