Set default dinero currencies. Created checklist display skeleton component. BOD-377

This commit is contained in:
Patrick Fic
2020-09-03 10:10:40 -07:00
parent 2adb72b25f
commit f4fed87f61
10 changed files with 87 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
import React from "react";
import ConfigFormComponents from "../config-form-components/config-form-components.component";
export default function JobChecklistDisplay({ checklist }) {
console.log("JobChecklistDisplay -> checklist", checklist);
if (!checklist) return <div></div>;
return (
<div>
<ConfigFormComponents readOnly componentList={checklist} />
</div>
);
}