// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; const InvoiceCustomizeContent = React.lazy( () => import('./InvoiceCustomizeContent'), ); /** * Invoice customize drawer. * @returns {React.ReactNode} */ function InvoiceCustomizeDrawerRoot({ name, // #withDrawer isOpen, payload: {}, }) { return ( ); } export const InvoiceCustomizeDrawer = R.compose(withDrawers())( InvoiceCustomizeDrawerRoot, );