import React from 'react'; import { Drawer, DrawerSuspense } from 'components'; import withDrawers from 'containers/Drawer/withDrawers'; import { compose } from 'utils'; const CreditNoteDetailDrawerContent = React.lazy(() => import('./CreditNoteDetailDrawerContent'), ); /** * Credit note detail drawer. */ function CreditNoteDetailDrawer({ name, // #withDrawer isOpen, payload: { creditNoteId }, }) { return ( ); } export default compose(withDrawers())(CreditNoteDetailDrawer);