Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- IntelliJ
- Eclipse
- ssh
- vscode
- bash
- port
- Windows
- Mac
- Windows 10
- find
- netsh
- context
- VirtualBox
- resource
- maVen
- web.xml
- Quartz
- 단축키
- Source
- JavaScript
- xargs
- tomcat
- grep
- profile
- 줄바꿈 문자
- 네트워크
- import
- plugin
- GIT
- lsof
Archives
- Today
- Total
develog
[react] react-i18next 본문
// json
{
"총 {{count}} 건": "총 {{count}} 건"
}
// javascript
import { useTranslation } from 'react-i18next';
const { t } = useTranslation();
<span>
{t(`총 {{count}} 건`, {count: 15})}
</span>
Comments