import React from 'react'; import { Drawer, DrawerSuspense } from 'components'; import withDrawers from 'containers/Drawer/withDrawers'; import { compose } from 'utils'; const ItemDetailDrawerContent = React.lazy(() => import('./ItemDetailDrawerContent'), ); /** * Item Detail drawer. */ function ItemDetailDrawer({ name, // #withDrawer isOpen, payload: { itemId }, }) { return ( ); } export default compose(withDrawers())(ItemDetailDrawer);