Account.js 295 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react'
import MainNav from '../Components/MainNav'
import SubNav from '../Components/SubNav'


function Account() {
    return (
        <div>
            <MainNav />
            <SubNav />
            <h5>마이페이지</h5>
        </div>
    )
}


export default Account