일정 관리 웹 어플리케이션 만들기 (1)
UI 구성하기 1. 프로젝트 생성 //todo-app 프로젝트 생성 npm create react-app todo-app //Sass, 조건부 스타일링, 아이콘 라이브러리 설치 cd todo-app npm add node-sass classnames react-icons 2. Prettier 설정 //최상단 .prettierrc파일 생성 { "singleQuote": true, "semi": true, "useTabs": false, "tabWidth": 2, "trailingComma": "all", "printWidth": 80 } 3. index.css 수정 /* src > index.css 수정 */ body { margin: 0; padding : 0; background : #e9ecef; }..