React#Todo일정관리페이지 만들기 썸네일형 리스트형 [Leaning-React] 10. 일정 관리 앱 애플리케이션 만들기 1. 프로젝트 준비하기 >$ yarn create react-app todo-app >$ cd todo-app >$ yarn add node-sass classnames react-icons 1-1) prettier 설정 .prettierrc { "singleQuote": true, "semi": true, "useTabs": false, "tabWidth": 2, "trailingComma": "all", "printWidth": 80 } 1-2) index.css 수정 font 삭제, background 설정 body { margin: 0; padding: 0; background: #e9ecef; } 1-3) App.js 초기화 import React from 'react'; const App = .. 더보기 이전 1 다음