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

20 lines
437 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';
import AreaDrpChart from './chart';
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;