// @ts-nocheck import React, { lazy } from 'react'; import * as R from 'ramda'; import { Drawer, DrawerHeaderContent, DrawerSuspense } from '@/components'; import withDrawers from '@/containers/Drawer/withDrawers'; import { Position } from '@blueprintjs/core'; import { DRAWERS } from '@/constants/drawers'; const ChangeSubscriptionPlanContent = lazy( () => import('./ChangeSubscriptionPlanContent'), ); /** * Account drawer. */ function ChangeSubscriptionPlanDrawer({ name, // #withDrawer isOpen, }) { return ( ); } export default R.compose(withDrawers())(ChangeSubscriptionPlanDrawer);