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?

Next.jsでReactのmemoを使用した際の"Component definition is missing display name eslint(react/display-name)"の解消

Last updated at Posted at 2024-06-25

概要

Reactを使用して開発中、パフォーマンス最適化のためにmemoを使用したところESLintに
"Component definition is missing display name eslint(react/display-name)"
と怒られてしまったときの解決方法メモ。

バージョン等

  • Next.js v14.2.2(Pages Router)
  • コンポーネントにはアロー関数を使用

解決方法

ファイルの最後にdisplayNameを明示的に示す。以下例。

ComponentName.displayName = "ComponentName";

なぜdisplayNameが必要なのか

displayNameは主にReactのエラーメッセージで使われ、デバッグに役立つ。もしこれが得られない場合エラーメッセージにはデフォルトでComponentと表示されるため、アプリケーションに1つ以上のコンポーネントがあるとデバッグが非常に困難になってしまうため。

参考文献

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?