20 lines
354 B
JavaScript
20 lines
354 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"
|
||
|
|
>
|
||
|
|
<AreaDrpChart data={[]} />
|
||
|
|
</PanelBox>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default DrpReal;
|