Skip to content

Commit

Permalink
!Hotfix: 대소문자 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobbymin committed Nov 15, 2024
1 parent 5e158af commit 5dcc6fd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/pages/sinitto/mypage/ui/SinittoMyPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { AccountInfoBox, SinittoProfileBox } from '../components';
import {
PointBox,
PointLogBox,
Withdrawal,
PageLayout,
} from '@/shared/components';

export const SinittoMyPage = () => {
return (
<PageLayout>
<SinittoProfileBox />
<AccountInfoBox />
<PointBox isSinitto={true} />
<PointLogBox />
<Withdrawal />
</PageLayout>
);
};

0 comments on commit 5dcc6fd

Please sign in to comment.