mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 11:35:37 +01:00
feat: add host
This commit is contained in:
parent
a38baa50af
commit
7152b0b76d
11 changed files with 61 additions and 5 deletions
|
|
@ -2,6 +2,7 @@ import { useState } from 'react';
|
|||
import { Grid, GridRow } from 'components/layout/Grid';
|
||||
import PagesTable from 'components/metrics/PagesTable';
|
||||
import ReferrersTable from 'components/metrics/ReferrersTable';
|
||||
import HostsTable from 'components/metrics/HostsTable';
|
||||
import BrowsersTable from 'components/metrics/BrowsersTable';
|
||||
import OSTable from 'components/metrics/OSTable';
|
||||
import DevicesTable from 'components/metrics/DevicesTable';
|
||||
|
|
@ -26,9 +27,10 @@ export default function WebsiteTableView({
|
|||
|
||||
return (
|
||||
<Grid>
|
||||
<GridRow columns="two">
|
||||
<GridRow columns="three">
|
||||
<PagesTable {...tableProps} />
|
||||
<ReferrersTable {...tableProps} />
|
||||
<HostsTable {...tableProps} />
|
||||
</GridRow>
|
||||
<GridRow columns="three">
|
||||
<BrowsersTable {...tableProps} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue