리액트를 학습하기 앞서 먼저 개발 환경을 셋팅하는 법을 알아보겠다.
VS Code나 Git은 설치되어 있는 관계로 이에 대한 설명은 생략 하겠다.
/* react 설치 */
npm init react-app <프로젝트명>
git init
git remote add origin <URL>
git config --global user.name "name"
git config --global user.email "email"
git status
git add .
git commit -m "message"
git push origin master