Skip to content

Commit 63f3ba8

Browse files
committed
Added logic to render a checkbox for each item, to be intended to be used to specify which item to edit or remove.
1 parent f3a9c63 commit 63f3ba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack_in/entry.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class TextWidget extends React.Component {
7676

7777
class ListItem extends React.Component {
7878
render() {
79-
return (<li>{ this.props.caption }</li>);
79+
return (<li><input type='checkbox' />{ this.props.caption }</li>);
8080
}
8181
}
8282

0 commit comments

Comments
 (0)