Skip to content

Instantly share code, notes, and snippets.

@teimurjan
Created May 21, 2018 06:44
Show Gist options
  • Save teimurjan/a2e90f3d6357c7d5ee156714a942ecb7 to your computer and use it in GitHub Desktop.
Save teimurjan/a2e90f3d6357c7d5ee156714a942ecb7 to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
render() {
return (
<ul>
{this.props.todos.map(todo => (
<Todo todo={todo} onClick={() => this.props.onTodoClick(todo.id)} />
))}
</ul>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment