({ text, query })
| 128 | } |
| 129 | |
| 130 | function HighlightQuery({ text, query }) { |
| 131 | return ( |
| 132 | <Highlighter |
| 133 | highlightClassName="underline bg-transparent text-blue-500" |
| 134 | searchWords={[query]} |
| 135 | autoEscape={true} |
| 136 | textToHighlight={text} |
| 137 | /> |
| 138 | ) |
| 139 | } |
| 140 | |
| 141 | function SearchResult({ |
| 142 | result, |
nothing calls this directly
no outgoing calls
no test coverage detected