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

export default SubNav