import React, { lazy } from 'react'; import intl from 'react-intl-universal'; import { Drawer, DrawerSuspense } from 'components'; import withDrawers from 'containers/Drawer/withDrawers'; import { compose } from 'utils'; const ExpenseDrawerContent = lazy(() => import('./ExpenseDrawerContent')); /** * Expense drawer. */ function ExpenseDrawer({ name, // #withDrawer isOpen, payload: { expenseId }, }) { return ( ); } export default compose(withDrawers())(ExpenseDrawer);