import React from 'react'; import 'style/pages/Accounts/List.scss'; import { DashboardPageContent, DashboardContentTable } from 'components'; import { AccountsChartProvider } from './AccountsChartProvider'; import AccountsViewsTabs from 'containers/Accounts/AccountsViewsTabs'; import AccountsActionsBar from 'containers/Accounts/AccountsActionsBar'; import AccountsAlerts from './AccountsAlerts'; import AccountsDataTable from './AccountsDataTable'; import withAccounts from 'containers/Accounts/withAccounts'; import { transformTableStateToQuery, compose } from 'utils'; /** * Accounts chart list. */ function AccountsChart({ // #withAccounts accountsTableState, }) { return ( ); } export default compose( withAccounts(({ accountsTableState }) => ({ accountsTableState })), )(AccountsChart);