In AngularJS, one could display datetime strings in various formats using date filters:
<p>Date: {{ "2017-02-10T12:10:00.000Z" | date : "fullDate" }}</p>
and that would render:
Date: Friday, February 10, 2017
Is there such a thing as a date filter in React?