Fix seconds

This commit is contained in:
Francesco Esposito 2019-03-21 15:05:41 +01:00
parent 22c738602f
commit a3b01e9a30
1 changed files with 2 additions and 3 deletions

View File

@ -9,10 +9,9 @@ class Timer extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = { this.state = {
seconds: 4, seconds: 1500,
started: false, started: false,
send: false, send: false
title: ''
}; };
this.handleNotification = this.handleNotification.bind(this); this.handleNotification = this.handleNotification.bind(this);