-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserProfile.js
31 lines (31 loc) · 971 Bytes
/
UserProfile.js
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
28
29
30
31
import React from "react";
import "@stylesheets/profilecontainer.css";
export default function UserProfile({ onClose, onLogout }) {
function handleClose() {
onClose();
}
return (
<>
<div className=" bg-slate-100 p-[40px] pt-[30px] h-[500px] w-[500px] profileContainer rounded-2xl border-dashed border-black border-[2px]">
<img className="image1" src={`${localStorage.getItem("image")}`} />
<div className="youremail">
<p>Your Email: </p>
<span>{localStorage.getItem("userEmail")}</span>
</div>
<div className="name">
<p>Your Name : </p>
<span>{localStorage.getItem("userName")}</span>
</div>
<button className="logout" onClick={onLogout}>
Logout
</button>
<button
className="absolute right-[16px] top-[10px]"
onClick={handleClose}
>
✕
</button>
</div>
</>
);
}