Sessions page.

This commit is contained in:
Mike Cao 2024-07-28 19:51:14 -07:00
parent cd0f185f77
commit ac60d08ee5
17 changed files with 414 additions and 16 deletions

View file

@ -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>
);
}