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

18 lines
378 B
JavaScript
Raw Normal View History

2025-05-22 16:13:42 +08:00
import React, { useMemo, useState } from 'react';
import PanelBox from '../../components/PanelBox';
function DrpReal({ style }) {
return (
<PanelBox
style={style}
title="供水态势"
color="green"
>
<img src='/assets/gongshui.jpg' style={{width:'429.81px', height:'212px',marginLeft:'1px'}}/>
</PanelBox>
)
}
export default DrpReal;