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