22 lines
472 B
JavaScript
22 lines
472 B
JavaScript
import React, { useMemo, useState } from 'react';
|
|
import PanelBox from '../../components/PanelBox';
|
|
|
|
function DrpReal({ style }) {
|
|
|
|
return (
|
|
<PanelBox
|
|
style={style}
|
|
title="设备统计"
|
|
color="green"
|
|
extra={
|
|
<>
|
|
</>
|
|
}
|
|
>
|
|
<img src={process.env.PUBLIC_URL+'/assets/设备统计1.jpg'} style={{width:'11.5rem', height:'16rem',marginLeft:'6.5rem',marginTop:'2rem'}}/>
|
|
</PanelBox>
|
|
)
|
|
}
|
|
|
|
export default DrpReal;
|