asb_cloud_front/src/pages/Analysis.jsx

30 lines
952 B
React
Raw Normal View History

import { AnalysisDepthToDay } from '../components/AnalysisDepthToDay'
import { AnalysisDepthToInterval } from '../components/AnalysisDepthToInterval'
2021-07-21 15:36:08 +05:00
import { AnalysisOperationTime } from '../components/AnalysisOperationTime'
import { Row, Col } from 'antd'
2021-05-28 12:04:38 +05:00
export default function Analysis() {
return (
<>
2021-07-23 12:01:07 +05:00
<Row>&nbsp;</Row>
<Row justify="space-around" align="middle">
2021-07-21 15:36:08 +05:00
<Col span={10}>
2021-07-23 12:01:07 +05:00
<h2>График Глубина-день</h2>
2021-07-21 15:36:08 +05:00
<AnalysisDepthToDay />
</Col>
<Col span={10}>
2021-07-23 12:01:07 +05:00
<h2>График Глубина за интервал</h2>
2021-07-21 15:36:08 +05:00
<AnalysisDepthToInterval />
</Col>
2021-07-23 12:01:07 +05:00
</Row >
<Row><div style={{height: "150px"}}>&nbsp;</div></Row>
<Row justify="space-around" align="middle">
2021-07-21 15:36:08 +05:00
<Col span={10}>
2021-07-23 12:01:07 +05:00
<h2>График Операция за время</h2>
2021-07-21 15:36:08 +05:00
<AnalysisOperationTime />
</Col>
</Row>
</>
)
}