develog

[react] react-i18next 본문

카테고리 없음

[react] react-i18next

냐옴 2023. 3. 20. 18:40
// json

{
    "총 {{count}} 건": "총 {{count}} 건"
}
// javascript

import { useTranslation } from 'react-i18next';

const { t } = useTranslation();

<span>
    {t(`총 {{count}} 건`, {count: 15})}
</span>

 

Comments