20 lines
582 B
TypeScript
20 lines
582 B
TypeScript
import React from "react";
|
|
import intl from "react-intl-universal";
|
|
import LeftDownChartE from "./LeftDownE/LeftDownChartE";
|
|
|
|
function LeftDownE() {
|
|
return (
|
|
<div className="block_3_E3 flex-col fineWin">
|
|
<div className="fineWin-footer"/>
|
|
<div className="box_77 flex-row justify-between">
|
|
<div className="box_36 flex-col"/>
|
|
<span className="text_2">{intl.get('EquipmentOperationMonitoring')}</span>
|
|
</div>
|
|
<div style={{marginTop: 15}}>
|
|
<LeftDownChartE/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default LeftDownE; |