@ia2coop/ia2-react-text-annotate
v1.2.2
Published
[![NPM](https://img.shields.io/npm/v/react-text-annotate)](https://www.npmjs.com/package/react-text-annotate)
Downloads
9
Readme
react-text-annotate
A React component for interactively highlighting parts of text.
Usage
React 16.8.0
or higher is required as a peer dependency of this package.
npm install --save react-text-annotate
Examples
A simple controlled annotation.
import {TokenAnnotator, TextAnnotator} from 'react-text-annotate'
<TokenAnnotator
tokens={['My', 'text', 'needs', 'annotating', 'for', 'NLP', 'training']}
value={[{start: 5, end: 6, tag: 'TOPIC', color: '#EEE'}]}
/>