Updated pages and referrer filters to merge urls.
This commit is contained in:
19
components/metrics/DevicesTable.js
Normal file
19
components/metrics/DevicesTable.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import React from 'react';
|
||||
import MetricsTable from './MetricsTable';
|
||||
import { deviceFilter } from 'lib/filters';
|
||||
|
||||
export default function DevicesTable({ websiteId, startDate, endDate, limit, onExpand }) {
|
||||
return (
|
||||
<MetricsTable
|
||||
title="Devices"
|
||||
type="device"
|
||||
metric="Visitors"
|
||||
websiteId={websiteId}
|
||||
startDate={startDate}
|
||||
endDate={endDate}
|
||||
limit={limit}
|
||||
dataFilter={deviceFilter}
|
||||
onExpand={onExpand}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user