Skip to content

Instantly share code, notes, and snippets.

@yakirn
Created October 17, 2017 08:29
Show Gist options
  • Save yakirn/0055b51af60cdca1b7ff47ca1cad61cf to your computer and use it in GitHub Desktop.
Save yakirn/0055b51af60cdca1b7ff47ca1cad61cf to your computer and use it in GitHub Desktop.
Intl API react date format example
function DateFormatter(props, context) {
return (
<div>{props.date.toLocaleString(context.locale, { year: 'numeric', month: 'short', day: 'numeric' })}</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment