Skip to content

Instantly share code, notes, and snippets.

@teimurjan
Last active May 21, 2018 06:56
Show Gist options
  • Save teimurjan/59f0934e28ff533a870b1683a224bd96 to your computer and use it in GitHub Desktop.
Save teimurjan/59f0934e28ff533a870b1683a224bd96 to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
class Todo extends React.Component {
render() {
return (
<li className="todo" onClick={this.props.onClick}>
{this.props.todo}
</li>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment