import GraphBase from '../../../Common/GraphBase'; import ReactECharts from 'echarts-for-react'; import getOptions from '../../../../hooks/getChartOption'; function Oxygen(props) { function handleSwitch(v) { console.log('switched ', v); } function handleDateChange(v) { console.log('date ', v); } return ( {/* real echarts here */} {/* real table data here */} ); } export default Oxygen;