[IMP] owl: update to last version

This commit is contained in:
Géry Debongnie
2019-10-01 21:38:29 +02:00
parent b4eccb5149
commit 599492fa4b
4 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ class Greeter extends Component {
state = useState({ word: 'Hello' });
toggle() {
this.state.word = this.state.word === 'Hi' ? 'Hello' : 'Hi'
this.state.word = this.state.word === 'Hi' ? 'Hello' : 'Hi';
}
}