File tree 2 files changed +34
-5
lines changed
2 files changed +34
-5
lines changed Original file line number Diff line number Diff line change 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
+ }
2
12
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 >
5
33
</ div >
6
34
) ;
7
- }
35
+ } ;
36
+
37
+ export default AdminHomePage ;
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ const UpdatePasswordPage = () => {
45
45
</ Link >
46
46
</ ul >
47
47
< div className = "tab-content mt-2" >
48
- < p > Update password Page</ p >
49
48
< UpdatePassword />
50
49
</ div >
51
50
</ div >
You can’t perform that action at this time.
0 commit comments