当我在终端中运行yarn start时,我遇到了一个问题,它给了我这个警告:
compiled with warning
./src/app.js
Line 3: 'Header' is defined but never used no-unused-vars
search for the keyword to learn more about each warning
to ignore, add //eslint-disable-nest-line to the line before
这是什么意思,我该如何解决?
答案 0 :(得分:0)
问题是您定义或导入了Header,但在定义它后未在文件中的任何位置使用它。要解决此问题,您可以执行以下操作:
// eslint-disable
/* eslint-disable */
添加到文件顶部您的应用未损坏。警告只是提示您,如果您不使用Header,则应将其删除。
我希望这会有所帮助!
答案 1 :(得分:0)
警告是因为在第3行的app.js
中定义了一个名称为Header
的变量,但从不在此文件中使用此变量,因此该变量未被使用。如果您不想仅使用此变量删除它。