import React, { useEffect, useState } from 'react' import { Card, Image, Container, Row, Col, Table, Accordion, Button } from 'react-bootstrap' import { Link } from 'react-router-dom'; import person from '../person.svg'; import mypagetiger from '../mypagetiger.svg'; import axios from 'axios' import catchErrors from '../utils/catchErrors'; import { isAuthenticated } from '../utils/auth'; const INIT_ACCOUNT = { name: "", tel: "" } function Account() { const [account, setAccount] = useState(INIT_ACCOUNT) const [error, setError] = useState("") const userId = isAuthenticated() async function getUsername(user) { try { const response = await axios.get(`/api/users/account/${user}`) setAccount(response.data) console.log('555555555', response.data); } catch (error) { catchErrors(error, setError) console.log('error2222', error) } } useEffect(() => { getUsername(userId) }, [userId]) // const [account, setAccount] = useState(INIT_ACCOUNT) // const [error, setError] = useState("") // const user = isAuthenticated() // async function getAccount(user) { // console.log(user); // try { // const response = await axios.get("/api/auth/login") // setAccount(response.data) // console.log(response.data); // } catch (error) { // catchErrors(error, setError) // } // } // useEffect(() => { // getAccount(user) // }, [user]) return (

My Page

{account.name} ({account.id}){" "}님

KU# {/* 홈페이지로 돌아가기 */} 를 방문해주신 {account.name} 님,

진심으로 환영합니다! 즐거운 쇼핑 되세요.

* 문의 : shoppingmall_KU@korea.ac.kr {/* 쇼핑몰 문의 메일보내기 */}
주문현황 배송중 배송완료
케이시앵글부츠(SH) Mark Otto
2 Jacob Thornton
3 Larry the Bird
) } export default Account