SubNav.js 290 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
const SubNav = () => {
    return (
Jiwon Yoon's avatar
Jiwon Yoon committed
3
4
5
        <nav className="nav justify-content-end py-1">
            <a className="nav-link text-white" href="/login">로그인</a>
            <a className="nav-link text-white" href="/signup">회원가입</a>
Jiwon Yoon's avatar
Jiwon Yoon committed
6
7
8
9
10
        </nav>
    )
}

export default SubNav