mirror of
https://github.com/umami-software/umami.git
synced 2026-02-24 14:35:35 +01:00
Sessions page.
This commit is contained in:
parent
cd0f185f77
commit
ac60d08ee5
17 changed files with 414 additions and 16 deletions
|
|
@ -0,0 +1,17 @@
|
|||
import Profile from 'components/common/Profile';
|
||||
|
||||
export default function SessionInfo({ data }) {
|
||||
return (
|
||||
<h1>
|
||||
<Profile seed={data?.id} />
|
||||
<dl>
|
||||
<dt>ID</dt>
|
||||
<dd>{data?.id}</dd>
|
||||
<dt>Country</dt>
|
||||
<dd>{data?.country}</dd>
|
||||
<dt>City</dt>
|
||||
<dd>{data?.city}</dd>
|
||||
</dl>
|
||||
</h1>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue