react-words-highlight
v1.0.1
Published
Tiny React component for highlight words in text
Downloads
86
Readme
react-words-highlight
Tiny (~1kb min gz) React component for highlight words in text built with highlight-words
Install
npm install --save react-words-highlight
Usage
import React, { Component } from 'react'
import { WordsHighlight } from 'react-words-highlight'
class Example extends Component {
render() {
return (
<WordsHighlight
text="Some text to highlight"
query="text highlight"
highlightTag="strong"
highlightClassName="my-class"
/>
);
}
}
License
MIT © vitalybaev