UNPKG

@talend/react-containers

Version:

Provide connected components aka containers for @talend/react-cmf based on @talend/react-components.

15 lines 508 B
import { Map } from 'immutable'; import { cmfConnect } from '@talend/react-cmf'; import GuidedTourContainer from './GuidedTour.container'; export const DEFAULT_STATE = Map({}); export default cmfConnect({ componentId: ownProps => ownProps.componentId || ownProps.id, defaultProps: { saga: 'GuidedTour#default' }, defaultState: DEFAULT_STATE, withComponentId: true, withComponentRegistry: true, keepComponentState: true })(GuidedTourContainer); //# sourceMappingURL=GuidedTour.connect.js.map