개발 환경 설정하기
Last updated
Last updated
/* 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