99% there

This commit is contained in:
Tom Moor
2017-11-08 00:08:35 -08:00
parent 51bc705488
commit 5d716d9c5f
10 changed files with 122 additions and 79 deletions

View File

@ -20,10 +20,10 @@ export default class TodoItem extends Component {
};
render() {
const { children, checked, readOnly } = this.props;
const { children, checked, attributes, readOnly } = this.props;
return (
<ListItem checked={checked}>
<ListItem checked={checked} {...attributes}>
<Input
type="checkbox"
checked={checked}