React components often render HTML elements, and developers can pass various props (properties) to these elements. However, React has its own set of supported properties and attributes, and it's essential to avoid using unknown or invalid properties when working with such elements to prevent unexpected behavior at runtime.
The rule reports any instances where you are using a property or attribute that is not recognized by React or the HTML element you are rendering.
== How to fix it
Replace any unknown property or attribute with a known one, or add it to the list of exceptions.