18 lines
405 B
JavaScript
18 lines
405 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:'26rem', height:'12rem',marginLeft:'0.3rem',marginTop:'1rem'}}/>
|
||
|
|
</PanelBox>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default DrpReal;
|