react/jsx-no-undef Correctness 
What it does 
Disallow undeclared variables in JSX
Why is this bad? 
It is most likely a potential ReferenceError caused by a misspelling of a variable or parameter name.
Examples 
Examples of incorrect code for this rule:
jsx
const A = () => <App />;
const C = <B />;How to use 
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny react/jsx-no-undef --react-pluginjson
{
  "plugins": ["react"],
  "rules": {
    "react/jsx-no-undef": "error"
  }
}