8 lines
118 B
JavaScript
8 lines
118 B
JavaScript
function fn(Component, obj) {
|
|
|
|
var data = obj.data,
|
|
_ref = <Component prop={data} />;
|
|
|
|
return () => _ref;
|
|
}
|