Added some additional save indiactors BOD-134

This commit is contained in:
Patrick Fic
2020-08-21 17:17:36 -07:00
parent 4a92ef03cc
commit dd1016eef3
13 changed files with 127 additions and 81 deletions

View File

@@ -8,9 +8,10 @@ export function DateFormatter(props) {
<Moment format="MM/DD/YYYY ">{props.children}</Moment>
) : null;
}
export function DateTimeFormatter(props) {
return props.children ? (
<Moment format="MM/DD/YYYY @ HH:mm">{props.children}</Moment>
<Moment format="MM/DD/YYYY hh:mm a">{props.children}</Moment>
) : null;
}