2021-07-19 17:28:09 +05:00
|
|
|
import { AnalysisDepthToDay } from '../components/AnalysisDepthToDay'
|
|
|
|
import { AnalysisDepthToInterval } from '../components/AnalysisDepthToInterval'
|
2021-05-28 12:04:38 +05:00
|
|
|
|
2021-07-19 17:28:09 +05:00
|
|
|
export default function Analysis() {
|
2021-07-20 16:15:44 +05:00
|
|
|
|
2021-05-27 12:53:42 +05:00
|
|
|
return (
|
2021-07-19 17:28:09 +05:00
|
|
|
<>
|
|
|
|
<AnalysisDepthToDay />
|
2021-07-20 16:15:44 +05:00
|
|
|
<div style={{ marginTop: '100px' }}> </div>
|
2021-07-19 17:28:09 +05:00
|
|
|
<AnalysisDepthToInterval />
|
|
|
|
</>
|
2021-05-27 12:53:42 +05:00
|
|
|
)
|
|
|
|
}
|