- npm init react-app .
- index.js 와 index.html 만 두고 나머지 삭제
- index.js 기본 구조만 냅두고 내용 정리
- git repository 생성 : React_Codeit_PoketMon
- PC에서 해당 폴더에 git 설정 : git init
- git email 설정 확인 : git config user.email
- git remote 연결 : git remote add origin https://github.com/HyeonAKim/React_Codeit_PoketMon.git
- git remote 확인 : git remote -v
- 파일 변경사항 확인 : git status
- 초기 환경 add , commit, push git add . git commit -m '00.init environment' git push -u origin master
- map 으로 랜더링하기
- sort로 정렬하기
- filter 로 삭제하기
- 반드시 key 내려주기