18 lines
399 B
JavaScript
18 lines
399 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/供水监管.jpg' style={{width:'419.81px', height:'195px',marginLeft:'1px',marginTop:'10px'}}/>
|
|
</PanelBox>
|
|
)
|
|
}
|
|
|
|
export default DrpReal;
|