Sessions page.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user