cde7be9f2a
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
284 B
TypeScript
12 lines
284 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-muted-foreground">
|
|
{t("vocab.selectPrompt")}
|
|
</div>
|
|
);
|
|
}
|