kitchen-simulator
Version:
It is a kitchen simulator (self-contained micro-frontend).
30 lines • 1.5 kB
JavaScript
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
import React from 'react';
import PropTypes from 'prop-types';
var STYLE = {
padding: '0 20px',
overflowY: 'auto'
};
export default function ContentContainer(_ref) {
var children = _ref.children,
width = _ref.width,
height = _ref.height,
_ref$style = _ref.style,
style = _ref$style === void 0 ? {} : _ref$style;
return /*#__PURE__*/React.createElement("div", {
style: _objectSpread(_objectSpread({
width: width,
height: height
}, STYLE), style),
onWheel: function onWheel(event) {
return event.stopPropagation();
}
}, children);
}
ContentContainer.propsType = {
width: PropTypes.number.isRequired,
height: PropTypes.number.isRequired,
style: PropTypes.object
};