26 lines
479 B
JavaScript
26 lines
479 B
JavaScript
|
import _transformLib from 'transform-lib';
|
||
|
const _components = {
|
||
|
Foo: {
|
||
|
displayName: 'Foo'
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const _transformLib2 = _transformLib({
|
||
|
filename: '%FIXTURE_PATH%',
|
||
|
components: _components,
|
||
|
locals: [],
|
||
|
imports: []
|
||
|
});
|
||
|
|
||
|
function _wrapComponent(id) {
|
||
|
return function (Component) {
|
||
|
return _transformLib2(Component, id);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
import React, { PureComponent } from 'react';
|
||
|
|
||
|
const Foo = _wrapComponent('Foo')(class Foo extends PureComponent {
|
||
|
render() {}
|
||
|
});
|