ac30eadbb2
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
import { useTranslation } from "react-i18next";
|
|
|
|
export function SelectVocabularyPrompt() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div className="flex h-full items-center justify-center p-4 text-sm text-neutral-400">
|
|
{t("vocab.selectPrompt")}
|
|
</div>
|
|
);
|
|
}
|