mcfxkh-Web/src/views/Home/panels/Scscqk/index.js

20 lines
354 B
JavaScript
Raw Normal View History

2025-05-27 16:33:56 +08:00
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;