0.1.2 • Published 4 years ago
semantic-react-i18next-trans v0.1.2
semantic-react-i18next-trans
Feature
This is Extended <Trans />
Component in react-i18next
for semantics and types.
You can code jsx with Translation like
import { TransP } from "semantic-react-i18next-trans";
const Hoge = () => {
return(<div>
<TransP>Paragraph</TransP>
</div>)
}
not like here, <Trans />
is mixed up with markup.
import { TransP } from "semantic-react-i18next-trans";
const Hoge = () => {
return(<div>
<p><Trans>Paragraph</Trans></p>
</div>)
}
How To Use?
yarn add react-i18next i18next semantic-react-i18next-trans -D
and write code!!
FAQ
- Q. Does this package will cause expanded bundle-size ?
- No, This package is tree-shakable ✨