@talend/react-containers
Version:
Provide connected components aka containers for @talend/react-cmf based on @talend/react-components.
12 lines • 443 B
JavaScript
import { cmfConnect } from '@talend/react-cmf';
import SubHeaderBar, { DEFAULT_STATE } from './SubHeaderBar.container';
export default cmfConnect({
componentId: ownProps => ownProps.componentId || ownProps.id,
defaultState: DEFAULT_STATE,
omitCMFProps: true,
withComponentRegistry: true,
withDispatch: true,
withDispatchActionCreator: true,
withComponentId: true
})(SubHeaderBar);
//# sourceMappingURL=SubHeaderBar.connect.js.map