generated from muhandojeon/study-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# 리액트 애플리케이션 구조 | ||
* 기능별 그룹화 | ||
|
||
``` | ||
- product | ||
- cart | ||
- user | ||
``` | ||
|
||
- 변경 사항이 특정 부분에 제한된다는 장점 | ||
- 모듈 간 공통적으로 사용하는 것들에 대해 주기적으로 파악해야만 중복을 피하고 재사용성을 높일 수 있다는 단점 | ||
|
||
* 파일 유형별 그룹화 | ||
|
||
``` | ||
- components | ||
- pages | ||
- api | ||
- styles | ||
``` | ||
|
||
- 장점 | ||
- 표준 구조 | ||
- 빠른 적응 | ||
- 공통 컴포넌트 및 스타일 변경 용이 | ||
- 단점 | ||
- 모듈 수정 시 여러 폴더 수정 필요 | ||
- 파일 찾기 어려움 | ||
|
||
* 혼합(하이브리드) 그룹화 | ||
|
||
``` | ||
- components | ||
- pages | ||
- api | ||
- styles | ||
- domain | ||
- product | ||
- cart | ||
- user | ||
``` | ||
|
||
> 혼합 구조를 별 생각없이 일반적으로 쓰고 있었음 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 결론 | ||
|
||
- https://www.patterns.dev/ |