内容
create-react-appで作成されたReactアプリケーションのバージョンが18となるので、17.0.2に変更する方法。
# create-react-appを使用してアプリケーションを作成
npx create-react-app my-app
目次
手順
package.json の下記を18から17に修正
"react": "^17.0.2",
"react-dom": "^17.0.2",
npm installを実行
npm install
index.js を下記ファイルに修正
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(<App />, document.getElementById('root'));
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
以上