WIP for Job Costing BOD-192
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import React from "react";
|
||||
import JobCostingPartsTable from "../job-costing-parts-table/job-costing-parts-table.component";
|
||||
import { Row, Col } from "antd";
|
||||
|
||||
const colSpan = {
|
||||
md: { span: 24 },
|
||||
lg: { span: 12 },
|
||||
};
|
||||
|
||||
export default function JobCostingModalComponent({ job }) {
|
||||
return (
|
||||
<div>
|
||||
<Row gutter={[32, 32]}>
|
||||
<Col {...colSpan}>
|
||||
<JobCostingPartsTable job={job} />
|
||||
</Col>
|
||||
<Col {...colSpan}></Col>
|
||||
</Row>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user