Skip to content

Instantly share code, notes, and snippets.

@clicman
Created March 5, 2017 18:42
Show Gist options
  • Save clicman/3a1c0721763b81f2eadc7ea8f95c2c02 to your computer and use it in GitHub Desktop.
Save clicman/3a1c0721763b81f2eadc7ea8f95c2c02 to your computer and use it in GitHub Desktop.
import React from 'react';
class BadFormatting extends React.Component {
handleClick() {
console.log('clicked');
}
render() {
return (
<div>
<div>
<div>
<div>
<div onClick={ ::this.handleClick }>
</div>
</div>
</div>
</div>
</div>
);
}
}
export default BadFormatting;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment