diff --git a/src/components/TodoItem.js b/src/components/TodoItem.js index ad81629..db16bc6 100644 --- a/src/components/TodoItem.js +++ b/src/components/TodoItem.js @@ -12,11 +12,11 @@ export class TodoItem extends Component { } render() { - const { id, title } = this.props.todo; + const { id, title, completed } = this.props.todo; return (
- {' '} + {' '} { title }