import React, { useCallback } from 'react'; import { Button, Intent } from '@blueprintjs/core'; import Icon from 'components/Icon'; import withDialogActions from 'containers/Dialog/withDialogActions'; import { compose } from 'utils'; import { FormattedMessage as T } from 'react-intl'; function CurrenciesActions({ openDialog }) { const handleClickNewCurrency = useCallback(() => { openDialog('currency-form'); }, [openDialog]); return (
); } export default compose(withDialogActions)(CurrenciesActions);