We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A component like this:
var React = require('react'); var MyComponent = React.createClass({ render: function() { return <span onClick={this.handleClick}>Span</span>; } }); module.exports = MyComponent;
Should complain because the component doesn't have a handleClick function.
handleClick
The text was updated successfully, but these errors were encountered:
I wonder if a more general rule for this could be written.
Sorry, something went wrong.
No branches or pull requests
A component like this:
Should complain because the component doesn't have a
handleClick
function.The text was updated successfully, but these errors were encountered: