UNPKG

@talend/react-containers

Version:

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

28 lines 913 B
import { cmfConnect } from '@talend/react-cmf'; import cmfModule from './cmfModule'; import * as allComponents from "@talend/react-components"; export * from './containers'; export { default as actionAPI } from './actionAPI'; export * from './register'; export const Layout = cmfConnect({ omitCMFProps: true, withComponentRegistry: true })(allComponents.Layout); export const CircularProgress = cmfConnect({ omitCMFProps: true })(allComponents.CircularProgress); export const Drawer = cmfConnect({ omitCMFProps: true, withComponentRegistry: true })(allComponents.Drawer); export const Icon = cmfConnect({ omitCMFProps: true })(allComponents.Icon); export const IconsProvider = cmfConnect({ omitCMFProps: true })(allComponents.IconsProvider); export const TooltipTrigger = cmfConnect({ omitCMFProps: true })(allComponents.TooltipTrigger); export default cmfModule; //# sourceMappingURL=index.js.map