mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-20 00:03:40 +01:00
18 lines
397 B
JavaScript
18 lines
397 B
JavaScript
|
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}
|
||
|
/>
|
||
|
);
|
||
|
}
|