React
- Introduction to the SDK
- Configuration
- Upgrade Guides
- SDK/User Loading States
- Providers and Connectors
- UI Components
- Hooks
- Events
- Handlers
- Objects
- Utilities
- Examples
Get the user's profile
Here is an example where you can use the user profile to display in a HTML table.
import { useDynamicContext } from '@dynamic-labs/sdk-react-core';
const UserProfileTable = () => {
const { user } = useDynamicContext();
return (
<table>
<thead>
<tr>
<th>Property</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Avatar</td>
<td>
{user?.ens?.avatar && (
<img
src={user.ens.avatar}
style={{ width: '2rem', height: '2rem' }}
/>
)}
</td>
</tr>
<tr>
<td>Email</td>
<td>{user?.email}</td>
</tr>
<tr>
<td>First name</td>
<td>{user?.firstName}</td>
</tr>
<tr>
<td>Last name</td>
<td>{user?.lastName}</td>
</tr>
<tr>
<td>Alias</td>
<td>{user?.alias}</td>
</tr>
<tr>
<td>Job title</td>
<td>{user?.jobTitle}</td>
</tr>
<tr>
<td>Country</td>
<td>{user?.country}</td>
</tr>
</tbody>
</table>
);
};
Was this page helpful?