11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
function render(Component) {
|
|
var text = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '',
|
|
_ref =
|
|
/*#__PURE__*/
|
|
<Component text={text} />;
|
|
|
|
return function () {
|
|
return _ref;
|
|
};
|
|
}
|