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