BOD-11 BOD-12 BOD-10 WIP Guided manual estimate creation.

This commit is contained in:
Patrick Fic
2020-03-23 09:24:09 -07:00
parent 7889ee61ae
commit c55f5ebafc
17 changed files with 769 additions and 133 deletions

View File

@@ -1,15 +1,27 @@
import React from "react";
import { Row, Col, Typography } from "antd";
import JobsCreateOwnerInfoNewComponent from "./jobs-create-owner-info.new.component";
import JobsCreateOwnerInfoSearchComponent from "./jobs-create-owner-info.search.component";
import { useTranslation } from "react-i18next";
export default function JobsCreateOwnerInfoComponent({ loading, owners }) {
const { t } = useTranslation();
return (
<div>
<Row>
<Typography.Title>XX</Typography.Title>
<Typography.Title>{t("jobs.labels.create.ownerinfo")}</Typography.Title>
</Row>
<Row>
<Col span={16}></Col>
<Row gutter={4}>
<Col span={16}>
<JobsCreateOwnerInfoSearchComponent
loading={loading}
owners={owners}
/>
</Col>
<Col span={8}></Col>
<Col span={8}>
<JobsCreateOwnerInfoNewComponent />
</Col>
</Row>
</div>
);