mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
19 lines
505 B
JavaScript
19 lines
505 B
JavaScript
import React from 'react';
|
|
import MetricsTable from './MetricsTable';
|
|
import { countryFilter, percentFilter } from 'lib/filters';
|
|
|
|
export default function CountriesTable({ websiteId, limit, onDataLoad = () => {}, onExpand }) {
|
|
return (
|
|
<MetricsTable
|
|
title="Countries"
|
|
type="country"
|
|
metric="Visitors"
|
|
websiteId={websiteId}
|
|
limit={limit}
|
|
dataFilter={countryFilter}
|
|
onDataLoad={data => onDataLoad(percentFilter(data))}
|
|
onExpand={onExpand}
|
|
/>
|
|
);
|
|
}
|