// @ts-nocheck import React from 'react'; import * as R from 'ramda'; import { Drawer, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; const QuickWriteVendorDrawerContent = React.lazy(() => import('./QuickWriteVendorDrawerContent'), ); /** * Quick Write vendor. */ function QuickWriteVendorDrawer({ name, // #withDrawer isOpen, payload, }) { return ( ); } export default R.compose(withDrawers())(QuickWriteVendorDrawer);