25 lines
530 B
JavaScript
25 lines
530 B
JavaScript
import React, { useMemo, useState } from 'react';
|
|
import PanelBox from '../../components/PanelBox';
|
|
import AreaDrpChart from './chart';
|
|
|
|
|
|
function DrpReal({ style }) {
|
|
|
|
return (
|
|
<PanelBox
|
|
style={style}
|
|
title="水厂生产情况"
|
|
color="green"
|
|
extra={
|
|
<>
|
|
<img src={process.env.PUBLIC_URL+'/assets/年下拉3.jpg'} style={{width:'100px', height:'30px',marginRight:'10px'}}/>
|
|
</>
|
|
}
|
|
>
|
|
<AreaDrpChart data={[]} />
|
|
</PanelBox>
|
|
)
|
|
}
|
|
|
|
export default DrpReal;
|