react_helloworld 概要 ReactのHelloWorldアプリケーションです。 環境構築 // yarnインストール $npm install --global yarn // create-react-appインストール $yarn global add create-react-app プロジェクト作成コマンド $npx create-react-app react-helloworld アプリケーション実行 $yarn start 動作メモ ・index.htmlのid=root要素内に、App.jsでreturnしたjsxが描画される。