asb_cloud_front/src/pages/Analysis.jsx

12 lines
285 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 />
<AnalysisDepthToInterval />
</>
)
}