This rule helps locate potential ReferenceErrors resulting from misspellings or missing components.
The following patterns are considered warnings:
<Hello name="John" />;
The following patterns are not considered warnings:
var Hello = require('./Hello');
<Hello name="John" />;
If you are not using JSX then you can disable this rule.