[React] 「create-react-app」環境構築を忘れないようにメモ


Reactの環境構築

npm install -g create-react-app

create-react-app react-app

cd react-app

npm start
├── .gitignore
├── README.md
├── package.json
├── node_modules
├── public
│   ├── favicon.ico
│   └── index.html
└── src
    ├── App.css
    ├── App.js
    ├── App.test.js
    ├── index.css
    ├── index.js
    └── logo.svg