fix: App.tsx user field names
This commit is contained in:
parent
0b5ea285de
commit
827431bb2f
1 changed files with 3 additions and 3 deletions
|
|
@ -29,9 +29,9 @@ const App: React.FC = () => {
|
||||||
return (
|
return (
|
||||||
<div style={{ padding: "2rem" }}>
|
<div style={{ padding: "2rem" }}>
|
||||||
<h1>User Info</h1>
|
<h1>User Info</h1>
|
||||||
<p><strong>ID:</strong> {user.id}</p>
|
<p><strong>ID:</strong> {user.user_id}</p>
|
||||||
<p><strong>Name:</strong> {user.name}</p>
|
<p><strong>Name:</strong> {user.nickname}</p>
|
||||||
<p><strong>Email:</strong> {user.email}</p>
|
<p><strong>Email:</strong> {user.mail}</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue