umami/components/metrics/OSTable.js

18 lines
397 B
JavaScript
Raw Normal View History

import React from 'react';
import MetricsTable from './MetricsTable';
export default function OSTable({ websiteId, startDate, endDate, limit, onExpand }) {
return (
<MetricsTable
title="Operating System"
type="os"
metric="Visitors"
websiteId={websiteId}
startDate={startDate}
endDate={endDate}
limit={limit}
onExpand={onExpand}
/>
);
}