1
0
mirror of https://github.com/franjsco/tomadoro synced 2025-06-06 00:29:13 +02:00

Fix seconds

This commit is contained in:
Francesco Esposito
2019-03-21 15:05:41 +01:00
parent 22c738602f
commit a3b01e9a30

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);