We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Congrats on the good work that you are doing!
Question. Do you plan to support for displaying dates relative to "now"
e.g.: 5 min ago 2 hours ago 2 days ago ...
react-intl has support for it, or maybe incorporate something like "react-timeago"
The text was updated successfully, but these errors were encountered:
Thanks for the suggestion. Currently, you could use moment.js for this purpose. JS:
moment.js
const ago = moment(new Date()).fromNow(); return (<div>{intl.get("key", {ago})}</div>);
Locale:
{ "key" : "Published {ago}" }
Sorry, something went wrong.
No branches or pull requests
Hi,
Congrats on the good work that you are doing!
Question. Do you plan to support for displaying dates relative to "now"
e.g.:
5 min ago
2 hours ago
2 days ago
...
react-intl has support for it, or maybe incorporate something like "react-timeago"
The text was updated successfully, but these errors were encountered: