@talend/react-containers
Version:
Provide connected components aka containers for @talend/react-cmf based on @talend/react-components.
14 lines • 410 B
JavaScript
import { cmfConnect } from '@talend/react-cmf';
import Container, { DEFAULT_STATE } from './Form.container';
export default cmfConnect({
defaultState: DEFAULT_STATE,
componentId(props) {
return props.formId;
},
omitCMFProps: true,
withComponentRegistry: true,
withDispatch: true,
withDispatchActionCreator: true,
withComponentId: true
})(Container);
//# sourceMappingURL=Form.connect.js.map