Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
SevngIl committed Aug 17, 2023
1 parent 46c37f0 commit 3c58979
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/Profile/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import ProfileImg from "../../assets/images/profile.png";
import { useContext } from "react";
import { AuthenticationContext } from "../../service/authentication/authentication.context";
import React from "react";

export const Profile = () => {
const { userData } = useContext(AuthenticationContext);
console.log(userData);
Expand All @@ -12,7 +13,11 @@ export const Profile = () => {
<FloatingWrapper>
<div className="leftContainer">
<img className="profileImg" src={ProfileImg} />
<div>{userData.userEmail}</div>
<div className="userEmail-container">
<div className="userEmail-header">이메일</div>
<div>{userData.userEmail}</div>
</div>

<div>{userData.userNN}</div>
</div>
<div className="rightContainer">
Expand Down

0 comments on commit 3c58979

Please sign in to comment.