UNPKG

@_nu/cli

Version:

🛠️ Standard Tooling for nu-system component development

30 lines (23 loc) 1.05 kB
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } import React from 'react'; import PropTypes from 'prop-types'; var Hello = function Hello(_ref) { var className = _ref.className, children = _ref.children, otherProps = _objectWithoutProperties(_ref, ['className', 'children']); return React.createElement( 'div', _extends({ className: '' + className }, otherProps), children ); }; Hello.propTypes = process.env.NODE_ENV !== "production" ? { className: PropTypes.string, children: PropTypes.node } : {}; Hello.defaultProps = { className: '', children: null }; export default Hello;