설치 명령어

(나는 yarn 이 좋아)

yarn create react-app my-app

기본구조

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/769ce34a-1aaf-448a-8fc8-3e1a96e81bd3/Untitled.png

프리티어 설정

.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>