Skip to content

Instantly share code, notes, and snippets.

@qswitcher
Created June 3, 2018 04:27
Show Gist options
  • Save qswitcher/22747ae082b6b525a965ca2eeb65262e to your computer and use it in GitHub Desktop.
Save qswitcher/22747ae082b6b525a965ca2eeb65262e to your computer and use it in GitHub Desktop.
class TodoList extends Component {
render() {
const { todos, deleteTodo } = this.props;
return todos.map((todo, i) => <TodoItem deleteTodo={deleteTodo} key={i} todo={todo} />);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment