-
Notifications
You must be signed in to change notification settings - Fork 2
Description
🚀 기능 요청
설명
- FSD(Feature-Sliced Design) 아키텍처는 기능 중심으로 프로젝트를 구성하여 코드의 가독성과 유지보수성을 높이는 것을 목표로 합니다. 하지만, 현재 일부 파일이 제대로 모듈화되어 있지 않은 상태라면 FSD의 장점을 충분히 살리지 못하고 있을 수 있습니다. 이를 해결하기 위해 모듈화 과정을 진행해야 합니다.
추가 정보
📦src
┣ 📂app
┃ ┣ 📂styles
┃ ┃ ┗ 📜index.css
┃ ┣ 📜App.tsx
┃ ┗ 📜main.tsx
┣ 📂components
┃ ┗ 📂layout
┣ 📂entities
┃ ┣ 📂auction
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂lib
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┣ 📂mocks
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂types
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂timer
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂lib
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂types
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂user
┃ ┃ ┗ 📜index.ts
┃ ┗ 📜index.ts
┣ 📂features
┃ ┣ 📂auction
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┣ 📂ClosingAndRanking
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┣ 📂HotAuction
┃ ┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┃ ┣ 📂PlusAuction
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┣ 📂ProductCarousel
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┣ 📂PromotionAndRank
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂bid
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂bidding
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂category
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂login
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂register
┃ ┃ ┣ 📂api
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂model
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂ui
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┗ 📜index.ts
┣ 📂pages
┃ ┣ 📜index.ts
┣ 📂shared
┃ ┣ 📂api
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂config
┃ ┃ ┣ 📜index.ts
┃ ┣ 📂lib
┃ ┃ ┣ 📂hooks
┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┣ 📂tests
┃ ┃ ┃ ┗ 📜setupTests.ts
┃ ┃ ┣ 📂util
┃ ┃ ┃ ┣ 📂format
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┣ 📂reportWebVitals
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂types
┃ ┃ ┣ 📜index.ts
┃ ┣ 📂ui
┃ ┃ ┗ 📜index.ts
┃ ┗ 📜index.ts
┣ 📂widgets
┃ ┣ 📂Banner
┃ ┃ ┣ 📜index.ts
┃ ┣ 📂Breadcrumb
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂Card
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂DetailSearch
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂Footer
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂Header
┃ ┃ ┣ 📜index.ts
┃ ┣ 📂ImageSlider
┃ ┃ ┗ 📜index.ts
┃ ┣ 📂Layout
┃ ┃ ┣ 📜index.ts
┃ ┣ 📂MenuComponent
┃ ┃ ┣ 📜index.ts
┃ ┗ 📜index.ts
┗ 📜vite-env.d.ts
Metadata
Metadata
Assignees
Labels
Type
Projects
Status