kitchen-simulator
Version:
It is a kitchen simulator (self-contained micro-frontend).
18 lines • 512 B
JavaScript
import React from 'react';
import Scene3D from "./scene3D";
export default function State3D(_ref) {
var state = _ref.state,
catalog = _ref.catalog,
width = _ref.width,
height = _ref.height,
downloadFlag = _ref.downloadFlag;
var scene = state.scene;
return /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement(Scene3D, {
scene: scene,
catalog: catalog,
width: width,
height: height,
mode: state.get('mode'),
downloadFlag: downloadFlag
}));
}