Open anilanar opened 5 years ago
I couldn't find anything in the docs. Or can we use ngettext with JSX? e.g:
ngettext
const countButton = <Button>{count}</Button>; const result = <div> {ngettext(msgid`${countButton} time`, `${countButton} times`, count)} </div>;
Hi @anilanar! Currently, there is no such feature. I think that our library should have that. Will try to implement that soon.
I couldn't find anything in the docs. Or can we use
ngettext
with JSX? e.g: