Update deps and typings, disable hot reload

This commit is contained in:
Danila 2016-09-19 00:13:36 +04:00
parent 5e0b9a8686
commit 0f022c99c7
6 changed files with 2829 additions and 407 deletions

View file

@ -6,13 +6,13 @@ import DevTools from 'mobx-react-devtools';
class AppState {
@observable timer = 0;
constructor() {
setInterval(() => {
this.timer += 1;
}, 1000);
}
resetTimer() {
this.timer = 0;
}