@pubsweet/ui
Version:
React component library for use in pubsweet apps
22 lines (17 loc) • 349 B
Markdown
A form input for a list of tags.
```js
<Tags
onChange={value => console.log(value)}/>
```
Existing values can be passed in, and the placeholder can be customized.
```js
const value = [
{name: 'foo'},
{name: 'bar'},
{name: 'baz'}
];
<Tags
value={value}
placeholder="Add new keyword"
onChange={value => console.log(value)}/>
```