Merge pull request #56 from TeamBNBN/fe/MyInfoChange

[Front-end] feat: 내 정보 변경 페이지 추가
This commit is contained in:
Jo Hyeonsoo 2024-07-19 13:55:22 +09:00 committed by GitHub
commit f0f8705f1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,23 @@
import { InfoEditForm } from '../../components/InfoEditForm';
import MaxWidthLayout from '../../components/Layout/MaxWidthLayout';
import SideBar from '../../components/SideBar/SideBar';
import SideLink from '../../components/SideBar/SideLink';
export default function MyInfoChangePage() {
return (
<>
<MaxWidthLayout hasSideBar>
<aside>
<SideBar title="마이페이지">
<SideLink to={'/'}>계정 정보 변경</SideLink>
<SideLink to={'/'}>비밀번호 변경</SideLink>
<SideLink to={'/'}>수강중인 강의</SideLink>
</SideBar>
</aside>
<main>
<InfoEditForm />
</main>
</MaxWidthLayout>
</>
);
}