import MetricsTable, { MetricsTableProps } from './MetricsTable';
import { emptyFilter } from 'lib/filters';
import FilterLink from 'components/common/FilterLink';
import TypeIcon from 'components/common/TypeIcon';
import { useIntl } from 'react-intl';
import { useMessages } from 'components/hooks';
export function CitiesTable(props: MetricsTableProps) {
const intl = useIntl();
const { formatMessage, labels } = useMessages();
const renderLabel = (city: string, country: string) => {
const countryName = intl.formatDisplayName(country, { type: 'region' });
return countryName ? `${city}, ${countryName}` : city;
};
const renderLink = ({ x: city, country }) => {
return (
{country && }
);
};
return (
);
}
export default CitiesTable;