Remove some comments

This commit is contained in:
Chi Vinh Le
2018-03-19 00:32:06 +01:00
parent 8aa8517d1d
commit 3821477ef0
@@ -111,9 +111,9 @@ class Editor extends React.Component {
className={styles.contentEditable}
id={id}
ref={this.handleRef}
html={this.state.html} // innerHTML of the editable div
disabled={false} // use true to disable edition
onChange={this.handleChange} // handle innerHTML change
html={this.state.html}
disabled={false}
onChange={this.handleChange}
/>
</div>
);