Skip to content

Commit cb7534b

Browse files
committed
admin display dashboard
1 parent 5638660 commit cb7534b

File tree

2 files changed

+34
-5
lines changed

2 files changed

+34
-5
lines changed

src/pages/adminHome.js

+34-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,37 @@
1-
export default function AdminHomePage() {
1+
// AdminHomePage.js
2+
import React from "react";
3+
4+
const AdminHomePage = ({ users }) => {
5+
try {
6+
if (users.length === 0 || users == null) {
7+
return <div className="container mt-4">No users found.</div>;
8+
}
9+
} catch (err) {
10+
return <div className="container mt-4">No users found.</div>;
11+
}
212
return (
3-
<div>
4-
<p>AdminHome Page</p>
13+
<div className="container mt-4">
14+
<h1>Users</h1>
15+
<table className="table">
16+
<thead>
17+
<tr>
18+
<th>Name</th>
19+
<th>Email</th>
20+
<th>Phone</th>
21+
</tr>
22+
</thead>
23+
<tbody>
24+
{users.map((user) => (
25+
<tr key={user.id}>
26+
<td>{user.name}</td>
27+
<td>{user.email}</td>
28+
<td>{user.phone}</td>
29+
</tr>
30+
))}
31+
</tbody>
32+
</table>
533
</div>
634
);
7-
}
35+
};
36+
37+
export default AdminHomePage;

src/pages/updatePassword.js

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ const UpdatePasswordPage = () => {
4545
</Link>
4646
</ul>
4747
<div className="tab-content mt-2">
48-
<p>Update password Page</p>
4948
<UpdatePassword />
5049
</div>
5150
</div>

0 commit comments

Comments
 (0)