npm i react-highlight-words
App.jsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from "react"; import Highlighter from "react-highlight-words"; const App = () => { return ( <Highlighter highlightClassName="YourHighlightClass" highlightStyle={{color:"blue"}} searchWords={["and", "or", "the"]} autoEscape={true} textToHighlight="The dog is chasing the cat. Or perhaps they're just playing?" /> ); }; export default App |