Extract labels and format date

This commit is contained in:
Julia Friesel
2018-06-05 17:44:31 +02:00
parent 090f4116d5
commit 8ee53ba75f
5 changed files with 17 additions and 9 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import moment from "moment"
export function formatDateForViewHeader(date) {
return moment(date).format()
return moment(date).format('MMMM Do YYYY')
}