import { Link } from "react-router-dom"; import { useAuth } from "../../context/auth_context.js" const SubNav = () => { const { user, logout } = useAuth(); return ( <> {(user) ? {(user.role === "member") ? 마이페이지 : 관리자페이지} 로그아웃 : 로그인 회원가입 } > ) } export default SubNav