import React from 'react'; import { NavbarGroup, Button, Classes, NavbarDivider } from '@blueprintjs/core'; import { FormattedMessage as T } from 'react-intl'; import classNames from 'classnames'; import Icon from 'components/Icon'; import DashboardActionsBar from 'components/Dashboard/DashboardActionsBar'; import { If } from 'components'; import withProfitLossActions from './withProfitLossActions'; import withProfitLoss from './withProfitLoss'; import { compose } from 'utils'; function ProfitLossActionsBar({ // #withProfitLoss profitLossSheetFilter, // #withProfitLossActions toggleProfitLossSheetFilter, }) { const handleFilterClick = () => { toggleProfitLossSheetFilter(); }; return (