// @ts-nocheck import React from 'react'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; import { compose } from '@/utils'; const CashFlowTransactionDrawerContent = React.lazy(() => import('./CashflowTransactionDrawerContent'), ); /** * Cash flow transaction drawer */ function CashflowTransactionDetailDrawer({ name, // #withDrawer isOpen, payload: { referenceId }, }) { return ( ); } export default compose(withDrawers())(CashflowTransactionDetailDrawer);