-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserinfo.jsx
27 lines (19 loc) · 1.24 KB
/
userinfo.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Component } from "react";
class UserInfoo extends Component{
render(){
const {userData}=this.props
return(
<div className="adminBox">
{userData.map((user)=>{
return(
<div className="card">
<img className="Image" src={user.Poster} />
<p className="para1">{user.Title}</p>
</div>
)
})}
</div>
)
}
}
export default UserInfoo;