22 lines
650 B
JavaScript
22 lines
650 B
JavaScript
import { useEffect, useState } from 'react';
|
|
import { Card, Typography, Flex } from 'antd';
|
|
import { setValSvg } from '../../components/Global/MqttConnection';
|
|
import SvgTemplate from './SvgTemplate';
|
|
import SvgViewer from './SvgViewer';
|
|
import filePathSvg from '../../assets/svg/test-new.svg';
|
|
|
|
const { Text } = Typography;
|
|
|
|
// const filePathSvg = '/src/assets/svg/test-new.svg';
|
|
const topicMqtt = 'PIU_GGCP/Devices/PB';
|
|
|
|
const SvgCompressorA = () => {
|
|
return (
|
|
<SvgTemplate>
|
|
<SvgViewer filePathSvg={filePathSvg} topicMqtt={topicMqtt} setValSvg={setValSvg} />
|
|
</SvgTemplate>
|
|
);
|
|
};
|
|
|
|
export default SvgCompressorA;
|