InfoUpdatePage.js 244 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
import Header from "../components/Header";
이재연's avatar
이재연 committed
2
3
4
5
6
import InfoUpdate from "../components/Profile/InfoUpdate";

const InfoUpdatePage = () => {
  return (
    <div>
Kim, Chaerin's avatar
Kim, Chaerin committed
7
      <Header />
이재연's avatar
이재연 committed
8
9
10
11
12
      <InfoUpdate />
    </div>
  );
};

Kim, Chaerin's avatar
Kim, Chaerin committed
13
export default InfoUpdatePage;