import React from 'react'; import { Drawer, DrawerSuspense } from 'components'; import withDrawers from 'containers/Drawer/withDrawers'; import { compose } from 'utils'; const QuickCretaeItemDrawerContent = React.lazy(() => import('./QuickCreateItemDrawerContent'), ); /** * Quick create item. */ function QuickCreateItemDrawer({ // #ownProps name, // #withDrawer isOpen, payload, }) { return ( ); } export default compose(withDrawers())(QuickCreateItemDrawer);