// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { Features } from '@/constants'; import { FeatureCan, FormattedMessage as T, Icon } from '@/components'; import withDialogActions from '@/containers/Dialog/withDialogActions'; import { compose } from '@/utils'; /** * Warehouse actions. */ function WarehousesActions({ //#ownProps openDialog, }) { const handleClickNewWarehouse = () => { openDialog('warehouse-form'); }; return ( ); } export default compose(withDialogActions)(WarehousesActions);