ProfilePage.js 291 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
6
7
import Header from "../components/Header";
import Profile from "../components/Profile/Profile";
import Info from "../components/Profile/Info";

const ProfilePage = () => {
  return (
    <div>
Kim, Chaerin's avatar
Kim, Chaerin committed
8
      <Header />
Kim, Chaerin's avatar
Kim, Chaerin committed
9
10
11
12
13
14
15
      <Profile />
      <Info />
    </div>
  );
};

export default ProfilePage;