asb_cloud_front/src/pages/Analysis.jsx
2021-07-19 17:28:09 +05:00

12 lines
285 B
JavaScript

import { AnalysisDepthToDay } from '../components/AnalysisDepthToDay'
import { AnalysisDepthToInterval } from '../components/AnalysisDepthToInterval'
export default function Analysis() {
return (
<>
<AnalysisDepthToDay />
<AnalysisDepthToInterval />
</>
)
}