import React, { useEffect, useState } from "react"; import { handleProfile } from "./auth.helper"; export default function Profile() { // 로컬 저장소에는 로그인 여부만 저장 const [email, setemail] = useState(""); const emailChange = async () => { const profile = await handleProfile(); setemail(profile.email); }; useEffect(() => { emailChange(); }, []); return (
프로필
Email
{email}
사진
a
별명
a
); }