import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; import { SuggestionBox } from "./suggestion-box"; interface ReplaySuggestionBoxProps { onChange: (event: React.ChangeEvent) => void; } export function ReplaySuggestionBox({ onChange }: ReplaySuggestionBoxProps) { const { t } = useTranslation(); return ( {t(I18nKey.LANDING$UPLOAD_TRAJECTORY)} } /> ); }