import React from 'react'; import PlugableControlBar from './PlugableControlBar'; import ls from './View3d.less'; import ObjectExplorer from './ObjectExplorer'; import OperationHistory from './OperationHistory'; import Abs from 'ui/components/Abs'; import {PlugableToolbarLeft, PlugableToolbarLeftSecondary, PlugableToolbarRight} from "./PlugableToolbar"; import UISystem from './UISystem'; import WizardManager from './wizard/WizardManager'; export default class View3d extends React.Component { shouldComponentUpdate() { //we don't want the dom to be updated under any circumstances or we loose the WEB-GL container return false; } render() { return
} componentWillUnmount() { throw 'big no-no'; } }