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

23 lines
530 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';
function DrpReal({ style }) {
return (
<PanelBox
style={style}
title="安防监控"
color="green"
2025-05-28 17:06:13 +08:00
extra={
<>
<img src='/assets/镇切换.jpg' style={{width:'150px', height:'20px',marginRight:'5px'}}/>
</>
}
2025-05-27 16:33:56 +08:00
>
<img src='/assets/安防监控.jpg' style={{width:'27.5rem', height:'11rem',marginLeft:'-8px'}}/>
</PanelBox>
)
}
export default DrpReal;