ProfilePage.js 401 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Header from "../components/Header";
import Profile from "../components/Profile/Profile";
import Info from "../components/Profile/Info";
import InfoUpdate from "../components/Profile/InfoUpdate";

const ProfilePage = () => {
  return (
    <div>
      Profile Page 입니다.
      <Header />
      <Profile />
      <Info />
      <InfoUpdate />
    </div>
  );
};

export default ProfilePage;