Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added logic to render a checkbox for each item, to be intended to be …
…used to specify which item to edit or remove.
  • Loading branch information
maratbn committed Aug 5, 2018
1 parent f3a9c63 commit 63f3ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack_in/entry.jsx
Expand Up @@ -76,7 +76,7 @@ class TextWidget extends React.Component {

class ListItem extends React.Component {
render() {
return (<li>{ this.props.caption }</li>);
return (<li><input type='checkbox' />{ this.props.caption }</li>);
}
}

Expand Down

0 comments on commit 63f3ba8

Please sign in to comment.