ProfilePage.js 333 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
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 />
      <Info />
    </div>
  );
};

export default ProfilePage;