Skip to content

Commit

Permalink
chore: 코드 순서 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
namdaeun committed Dec 2, 2024
1 parent 6e59aec commit 9d00ee7
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/pages/admin/components/RenderAdminContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,6 @@ const RenderAdminContent = ({ menu }: RenderAdminContentPropTypes) => {
/>
</Responsive>
</AdminLayout>

<Responsive only="desktop">
<Spacing marginBottom="3.6" />
</Responsive>
<Responsive only="mobile">
<Spacing marginBottom="1.2" />
</Responsive>
{showModal && (
<>
<ModalOverlay onClick={closeModal} />
Expand All @@ -113,6 +106,12 @@ const RenderAdminContent = ({ menu }: RenderAdminContentPropTypes) => {
/>
</>
)}
<Responsive only="desktop">
<Spacing marginBottom="3.6" />
</Responsive>
<Responsive only="mobile">
<Spacing marginBottom="1.2" />
</Responsive>
<TopicAdmin data={adminTopicData} setPageNum={setPageNum} pageNum={pageNum} />
</AdminContainer>
);
Expand Down

0 comments on commit 9d00ee7

Please sign in to comment.