This commit is contained in:
muerwre 2018-11-26 10:23:14 +07:00
parent 9c97c2df34
commit 0fcd0bd209
2 changed files with 2 additions and 3 deletions

View file

@ -115,12 +115,11 @@ export class App extends React.Component {
triggerOnChange = () => {
if (!this.state.editing) return;
console.log('CHANGED!');
this.setState({ changed: true });
};
clearChanged = () => {
console.log('clearing');
this.setState({ changed: false });
};