Skip to content

Instantly share code, notes, and snippets.

@catmando
Created March 16, 2019 02:37
Show Gist options
  • Save catmando/9dfaf358010151efc919bd17e9795a13 to your computer and use it in GitHub Desktop.
Save catmando/9dfaf358010151efc919bd17e9795a13 to your computer and use it in GitHub Desktop.
import React, {Component} from 'react';
import './ToDoItem.css';
class ToDoItem extends Component {
render() {
return (
<div className="ToDoItem">
<p className="ToDoItem-Text">{this.props.item}</p>
<button className="ToDoItem-Delete"
onClick={this.props.deleteItem}>-
</button>
</div>
);
}
}
export default ToDoItem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment