Created
May 21, 2018 06:48
-
-
Save teimurjan/19243283430b82e7481073faa0a7660b to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
render() { | |
return ( | |
<ul> | |
{this.props.todos.map(todo => ( | |
<Todo | |
todo={todo} | |
onClick={this.props.handleClick.bind(this)} | |
/> | |
))} | |
</ul> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment