Removed whiteboard from front page. Added dates fields. Added rates fields. Started refactoring lines page.

This commit is contained in:
Patrick Fic
2020-01-30 10:19:37 -08:00
parent 951737bffb
commit 457ec16fdc
18 changed files with 1013 additions and 107 deletions

View File

@@ -2,7 +2,7 @@ import React from "react";
import Moment from "react-moment";
export function DateFormatter(props) {
return <Moment format="MM/DD/YYYY">{props.children || ""}</Moment>;
return <Moment format="MM/DD/YYYY">{props.children || null}</Moment>;
}
export function DateTimeFormatter(props) {