WIP for manual job creation

This commit is contained in:
Patrick Fic
2020-03-18 21:50:04 -07:00
parent d7afe7e43f
commit 7889ee61ae
6 changed files with 170 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
import React from "react";
import { Row, Col, Typography } from "antd";
export default function JobsCreateOwnerInfoComponent({ loading, owners }) {
return (
<div>
<Row>
<Typography.Title>XX</Typography.Title>
</Row>
<Row>
<Col span={16}></Col>
<Col span={8}></Col>
</Row>
</div>
);
}