0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

お題は不問!Qiita Engineer Festa 2023で記事投稿!

CodeSandboxでReactプロジェクトの「react」ライブラリをv18→v17に変更した際に起きる「ModuleNotFoundError」を解決する

Last updated at Posted at 2023-07-01

はじめに

Udemyでじゃけぇさんの講座(https://www.udemy.com/course/react_stepup/)
を受講中に、Reactのバージョンをv18からv17に戻そうとしてエラーが起きたので、その解決方法を共有したいと思います。

結論

「react」ライブラリのバージョンを17に変更後、index.jsを以下のように変更すると直りました。

index.js
import React from "react";
import ReactDOM from "react-dom";
import App from "./App";

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById("root")
);

まとめ

初学者だったので知りませんでしたが、どうやらReactのv17とv18ではindex.jsの記述が異なるようで、そのせいで起こったエラーでした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?