UNPKG

react-tag-box

Version:

A tagging component in React. Select, create, and delete tags.

14 lines (11 loc) 271 B
import PropTypes from 'prop-types' import TagProp from './utils' import TagContainer from './TagBoxContainer' export default class TagBox extends TagContainer { static propTypes = { tags: PropTypes.arrayOf(TagProp) } tags() { return this.props.tags } }