import React from 'react'; import { connect } from 'react-redux'; import { getCurrentPoolName } from 'app/shared/services/filters/filters.service'; import { DashboardChartWrapper } from 'app/modules/dashboard/components/dashboardChartWrapper'; import { DashboardKeyFigures } from 'app/modules/dashboard/components/dashboardKeyFigures'; import { DashboardVesselList } from 'app/modules/dashboard/components/dashboardVesselList'; import { Headline } from '../../../shared/components/text/text'; export interface Props { poolName: string; } const dashboardPoolPage = ({ poolName }: Props) =>