MyPage.js 214 Bytes
Newer Older
한규민's avatar
한규민 committed
1
2
import MyInfo from "../components/MyInfo/MyInfo"

3
4
const MyPage = () => {
    return (
한규민's avatar
한규민 committed
5
6
        <div className="d-flex justify-content-center py-5">
            <MyInfo/>
7
8
9
10
11
        </div>
    )
}

export default MyPage