-
Notifications
You must be signed in to change notification settings - Fork 4
프로젝트 폴더 구조
홍승용 edited this page Nov 1, 2021
·
3 revisions
├── public //정적 파일들을 모아놓는 곳
│ ├── favicon.ico
│ └── index.html
├── src
│ ├── assests // image 파일
│ ├── components // component들을 모아놓은 폴더
│ ├── pages // component를 조합해 하나의 페이지를 구성
│ ├── stores // 전역상태관리
│ ├── styledComponents // 전역 스타일, scss 파일
│ ├── utils // 자주 쓰는 함수
│ ├── App.js
│ └── index.js