colonel-kurtz
Version:
25 lines (17 loc) • 695 B
JavaScript
;
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
var React = _interopDefault(require('react'));
var Section = /*@__PURE__*/(function (superclass) {
function Section () {
superclass.apply(this, arguments);
}
if ( superclass ) Section.__proto__ = superclass;
Section.prototype = Object.create( superclass && superclass.prototype );
Section.prototype.constructor = Section;
Section.prototype.render = function render () {
return React.createElement( 'div', null, this.props.children )
};
return Section;
}(React.Component));
module.exports = Section;
//# sourceMappingURL=section.js.map