UNPKG

twreporter-react

Version:

React-Redux site for The Reporter Foundation in Taiwan

31 lines (26 loc) 528 B
import _transformLib from 'transform-lib'; const _components = { Foo: { displayName: 'Foo' }, Bar: { displayName: 'Bar' } }; const _transformLib2 = _transformLib({ filename: '%FIXTURE_PATH%', components: _components, locals: [], imports: [] }); function _wrapComponent(id) { return function (Component) { return _transformLib2(Component, id); }; } const Foo = _wrapComponent('Foo')(createClass({ displayName: 'Foo' })); const Bar = _wrapComponent('Bar')(factory({ displayName: 'Bar' }));