Replies: 6 comments
-
|
|
Beta Was this translation helpful? Give feedback.
-
|
login 폴더 내부에 사용되고 있던 button 컴포넌트와 중복되는 컴포넌트가 logout 폴더 내부에서 사용이 되어야 하는 경우에,
# as-is
src/
├── app/
├── features/
│ ├── login/
│ │ ├── ui/
│ ├── Button/
│ │ ├── index.tsx
│ │ └── index.ts
│ └── logout/
│ ├── Button/
│ │ ├── index.tsx
│ └── index.ts
└── shared/
├── ui/
│ ├── Button/
│ │ ├── index.tsx
│ └── index.ts
└── index.ts
# to-be
src/
├── app/
├── features/
│ ├── login/
│ │ ├── ui/
│ │ └── index.ts
│ └── logout/
│ ├── ui/
│ └── index.ts
└── shared/
├── ui/
│ ├── Button/
│ │ ├── index.tsx
│ └── index.ts
└── index.ts
|
Beta Was this translation helpful? Give feedback.
-
|
서버에서 오는 raw 데이터를 DTO로 가공하는 책임을 viewModel에 두시는지, api 모듈에 두시는지 궁금합니다. (아니면 유동적으로 두군데에서 다 처리하시는지)
|
Beta Was this translation helpful? Give feedback.
-
|
3장 README 파일에도 남겨두긴했는데, 다들 읽어보시면 좋을 것 같슴다! |
Beta Was this translation helpful? Give feedback.
-
|
폴더 구조에 불편함을 느꼈던적이 있는지, 어떤식으로 해결하였는지 궁금합니다~! |
Beta Was this translation helpful? Give feedback.
-
|
유명한 기업들의 최근 레포를보고 해당 폴더구조는 어떻게 되어있을지 논의하면 좋을 것 같습니다. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
챕터 3과 관련되거나, 공유하고 싶은 주제를 자유롭게 올려주세요~!
Beta Was this translation helpful? Give feedback.
All reactions