Skip to content
New issue

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

False-Positive prop-types Error? #255

Closed
epmatsw opened this issue Oct 18, 2015 · 0 comments
Closed

False-Positive prop-types Error? #255

epmatsw opened this issue Oct 18, 2015 · 0 comments

Comments

@epmatsw
Copy link
Contributor

epmatsw commented Oct 18, 2015

The following code:

      Copyable.prototype.render = function() {
        return React.createElement(ReactZeroClipboard, {
          "text": this.props.textToCopy
        });
      };

gives the following warning:

error  'props' is missing in props validation        react/prop-types

My propTypes are set up correctly (as far as I know), and even if they weren't, it's weird that it complains about props:

Copyable.propTypes = {
        buttonText: React.PropTypes.string.isRequired,
        textToCopy: React.PropTypes.string.isRequired,
        copyClassName: React.PropTypes.string,
        htmlToCopy: React.PropTypes.string
      };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants