BOD-62 creation of totals utility class + base calculations.

This commit is contained in:
Patrick Fic
2020-04-06 21:09:48 -07:00
parent 4c679b6d83
commit 6bf9ba5be0
7 changed files with 560 additions and 122 deletions

View File

@@ -0,0 +1,9 @@
import React from "react";
export default function JobsTotalsTableComponent({ totals }) {
return (
<div>
<div>{JSON.stringify(totals, null, 2)}</div>
</div>
);
}