strawberryfields-demo / frontend

Apache License 2.0
0 stars 0 forks source link

Feat: 작가 음악 조회 페이지 구현 #9

Closed nakyoung98 closed 2 months ago

nakyoung98 commented 2 months ago

📃 관련 이슈

Closes: #8

✨ 작업 내용

SongLayout 컴포넌트

[목표]

usePagination 훅

[목표]

image

   export const usePagination = (
     initPage: number,
     minPage: number = 1,
     maxPage?: number,
     visiblePageCount: 1 | 3 | 5 | 7 | 9 = 1,
   ) => {
     const [currentPage, setCurrentPage] = useState(initPage);
     // ... 
     return {
       minPage,
       maxPage,
       currentPage,
       onPageChange,
       getShowPageList,
     };
   };

UploadMusicModalContainer

[목표]

⚠️ 주의 사항

📸 스크린샷

uplaodPage

➕ 추가 작업 사항

github-actions[bot] commented 2 months ago

올바른 PR 컨벤션

rebase에 대한 PR 컨벤션을 잘 준수하셨군요! 코드 작성하시느라 수고 많으셨습니다 :)