add date to symptom screen header

This commit is contained in:
Anne Menzel
2018-12-09 17:05:08 +01:00
parent 7d10fbffec
commit 1ed771a50c
4 changed files with 18 additions and 12 deletions
+9
View File
@@ -0,0 +1,9 @@
import { LocalDate } from 'js-joda'
import moment from 'moment'
export default function (date) {
const today = LocalDate.now()
const dateToDisplay = LocalDate.parse(date)
const formattedDate = today.equals(dateToDisplay) ? 'today' : moment(date).format('MMMM Do YYYY')
return formattedDate.toLowerCase()
}