22 lines
495 B
TypeScript
22 lines
495 B
TypeScript
|
import React from 'react'
|
||
|
import Dropped3dWidgets from './widgets/3d/Dropped3dWidget'
|
||
|
import ZoneCentreTarget from './zone/zoneCameraTarget'
|
||
|
import ZoneAssets from './zone/zoneAssets'
|
||
|
// import MqttEvents from '../../services/factoryBuilder/mqtt/mqttEvents'
|
||
|
|
||
|
const Visualization = () => {
|
||
|
return (
|
||
|
<>
|
||
|
|
||
|
<Dropped3dWidgets />
|
||
|
|
||
|
{/* <ZoneCentreTarget />
|
||
|
|
||
|
<ZoneAssets />
|
||
|
|
||
|
<MqttEvents /> */}
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Visualization;
|