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.

React17から18にバージョンアップした際に「Could not find a declaration file for module 'react-dom/client'. 」

Last updated at Posted at 2022-07-05

その文の通りcreateRootなんてものは定義されていねえというお叱り。
調べてもなかなか対策が出てこないものなのでその備忘録である。

環境

  • OS
    Mac Os Monterey 12.2.1

  • ライブラリ(アップデート前)
    React 17.0.2
    React-dom 17.0.2
    typescript

対策

@types/reactと@types/react-domが入ってなかったのでインストール。

それでもまだエラーが出る。

Uncaught Error: createRoot(...): Target container is not a DOM element.

idの指定が"app"になっていたので元々記述されていた"root"に変更で無事エラーは出なくなった。
公式のソースをコピペしていたので意外と気が付かないものだった、、、

参考記事

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?