import React, {useCallback, useEffect, useRef, useState} from 'react'; interface RowEntry { /** The entity-anchor id (e.g. "ref-current_interval_price") */ anchorId: string; /** The translation_key / entity ID suffix */ key: string; /** English name (first translated name) */ englishName: string; /** All translated names (for display in results) */ translatedNames: string[]; /** All searchable text from the row (names in all languages, key) */ searchText: string; /** The
{entry.key}
{matchedTranslation && (
{matchedTranslation}
)}