import React from 'react'; import { Drawer, DrawerSuspense } from 'components'; import withDrawers from 'containers/Drawer/withDrawers'; import { compose } from 'utils'; const RefundCreditNoteDrawerContent = React.lazy(() => import('./RefundCreditNoteDrawerContent'), ); /** * Refund credit note detail. * @returns */ function RefundCreditNoteDetailDrawer({ name, // #withDrawer isOpen, payload: { refundTransactionId }, }) { return ( ); } export default compose(withDrawers())(RefundCreditNoteDetailDrawer);