Complete refactor of jobs detail screen.

This commit is contained in:
Patrick Fic
2020-01-27 16:20:33 -08:00
parent 9553062045
commit b5e9c65aee
38 changed files with 3409 additions and 401 deletions

View File

@@ -0,0 +1,13 @@
import React from "react";
import NumberFormat from "react-number-format";
export default function CurrencyFormatter(props) {
return (
<NumberFormat
thousandSeparator={true}
prefix={"$"}
value={props.children}
displayType={"text"}
/>
);
}