18 lines
378 B
JavaScript
18 lines
378 B
JavaScript
|
|
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;
|