mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
16 lines
453 B
JavaScript
16 lines
453 B
JavaScript
|
import React from 'react';
|
||
|
import MetricsTable from './MetricsTable';
|
||
|
import { FormattedMessage } from 'react-intl';
|
||
|
|
||
|
export default function ScreenTable({ websiteId, ...props }) {
|
||
|
return (
|
||
|
<MetricsTable
|
||
|
{...props}
|
||
|
title={<FormattedMessage id="metrics.screens" defaultMessage="Screen" />}
|
||
|
type="screen"
|
||
|
metric={<FormattedMessage id="metrics.visitors" defaultMessage="Visitors" />}
|
||
|
websiteId={websiteId}
|
||
|
/>
|
||
|
);
|
||
|
}
|