kitchen-simulator
Version:
It is a kitchen simulator (self-contained micro-frontend).
19 lines • 567 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
export default function PropertyHidden(_ref) {
var value = _ref.value,
onUpdate = _ref.onUpdate,
configs = _ref.configs,
sourceElement = _ref.sourceElement,
internalState = _ref.internalState,
state = _ref.state;
return null;
}
PropertyHidden.propTypes = {
value: PropTypes.any.isRequired,
onUpdate: PropTypes.func.isRequired,
configs: PropTypes.object.isRequired,
sourceElement: PropTypes.object,
internalState: PropTypes.object,
state: PropTypes.object.isRequired
};