Account.js 162 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react'


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


export default Account