LoginSignup
0
0

More than 3 years have passed since last update.

'Hoge' is assigned a value but never used no-unused-varsのエラー

Posted at

エラー

'Hoge' is assigned a value but never used no-unused-vars

原因

Hogeを定義してるのに使ってない

対処法

const Hoge = () => {
    return <p>Hello</p>;
};

return (
    <div>
     <Hoge/>   //ここを追加
    </div>
);

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