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

22 lines
427 B
JavaScript
Raw Normal View History

2025-06-09 13:13:04 +08:00
import React, { useMemo, useState } from 'react';
import PanelBox from '../../components/PanelBox';
function DrpReal({ style }) {
return (
<PanelBox
style={style}
title="设备统计"
color="green"
extra={
<>
</>
}
>
<img src='/assets/设备统计.jpg' style={{width:'27.5rem', height:'11rem',marginLeft:'-8px'}}/>
</PanelBox>
)
}
export default DrpReal;