asb_cloud_front/src/pages/Analysis.jsx

13 lines
338 B
React
Raw Normal View History

import { AnalysisDepthToDay } from '../components/AnalysisDepthToDay'
import { AnalysisDepthToInterval } from '../components/AnalysisDepthToInterval'
2021-05-28 12:04:38 +05:00
export default function Analysis() {
return (
<>
<AnalysisDepthToDay />
<div style={{ marginTop: '100px' }}>&nbsp;</div>
<AnalysisDepthToInterval />
</>
)
}