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

Update description on no-string-refs #739

Closed
danielbeutner opened this issue Aug 4, 2016 · 0 comments
Closed

Update description on no-string-refs #739

danielbeutner opened this issue Aug 4, 2016 · 0 comments

Comments

@danielbeutner
Copy link

Hi,

the example given in your description is colliding with no-return-assign. A solution to this is mentioned in airbnb/javascript#884.

You can use replace

render() {
  return <div ref={c => this.hello = c}>Hello, world.</div>;
}

with

render() {
  return <div ref={(c) => { this.hello = c; }}>Hello, world.</div>;
}

Best, Daniel

@ljharb ljharb closed this as completed in 1ab2eec Aug 4, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant