설치 명령어

(나는 yarn 이 좋아)

yarn create react-app my-app

기본구조

프리티어 설정

.prettierrc

{
  "singleQuote": false,
  "semi": true,
  "useTabs": false,
  "tabWidth": 2,
  "trailingComma": "all",
  "printWidth": 80
}

리덕스 설치 명령어

<aside> 💡 yarn add redux react-redux

</aside>

부트 스트랩 설치 명령어

<aside> 💡 npm install react-bootstrap [email protected]

</aside>