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,20 @@
import React from "react";
import { Row, Col } from "antd";
import JobChecklistDisplay from "../job-checklist/job-checklist-display.component";
const colSpan = { sm: { span: 24 }, md: { span: 12 } };
export default function JobsDetailChecklists({ job }) {
return (
<div>
<Row gutter={[16, 16]}>
<Col {...colSpan}>
<JobChecklistDisplay checklist={job.intakechecklist} />
</Col>
<Col {...colSpan}>
{" "}
<JobChecklistDisplay checklist={job.deliverchecklist} />
</Col>
</Row>
</div>
);
}