User Interaction Examples
Get the user's profile
Configurations
- Installing Dynamic
- Chains/Networks
- Authentication
- Wallets
- Users / VC's
- Accessing Users
- Verified Credentials
- Information Capture
- Email and Phone Verification
- Social Linking
- User Interaction Examples
- Design
- Headless
- Onramps
- Bridges
Developer Dashboard
- SDK and API Keys
- Sandbox vs Live
- Analytics
- User Management
- Settings
- Admin
- Webhooks
- Configuring Social Providers
Tutorials
- Farcaster
- Features
- Frameworks
- Integrations
- Webhooks
Migrating to Dynamic
- Migrating to Dynamic
- Migration Tutorials
Troubleshooting
- Dynamic Doctor
- React Issues
- NextJS Issues
- Wallet Issues
- WalletConnect Issues
- Solved Issues
User Interaction 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?