mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
Added map to sessions page.
This commit is contained in:
parent
9b005e11c0
commit
af64602951
4 changed files with 17 additions and 4 deletions
|
|
@ -2,12 +2,17 @@
|
|||
import WebsiteHeader from '../WebsiteHeader';
|
||||
import SessionsDataTable from './SessionsDataTable';
|
||||
import SessionsMetricsBar from './SessionsMetricsBar';
|
||||
import WorldMap from 'components/metrics/WorldMap';
|
||||
import { GridRow } from 'components/layout/Grid';
|
||||
|
||||
export function SessionsPage({ websiteId }) {
|
||||
return (
|
||||
<>
|
||||
<WebsiteHeader websiteId={websiteId} />
|
||||
<SessionsMetricsBar websiteId={websiteId} />
|
||||
<GridRow columns="one">
|
||||
<WorldMap websiteId={websiteId} style={{ width: 800, margin: '0 auto' }} />
|
||||
</GridRow>
|
||||
<SessionsDataTable websiteId={websiteId} />
|
||||
</>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue