Remove _blockHoist usage from param processing.

This commit is contained in:
Logan Smyth
2017-05-02 13:14:56 -07:00
committed by Brian Ng
parent 18084db7cf
commit d86ae2fb84
4 changed files with 2 additions and 11 deletions

View File

@@ -1,7 +1,6 @@
function render(Component) {
var text = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
var _ref = <Component text={text} />;
var text = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '',
_ref = <Component text={text} />;
return function () {
return _ref;