Skip to content

Commit

Permalink
Corregido error Temporizador
Browse files Browse the repository at this point in the history
  • Loading branch information
uo289432 committed Apr 29, 2024
1 parent 5881312 commit eadd66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/Temporizador.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from 'react';

const Temporizador =({restart, tiempoInicial, tiempoAcabado, pausa, handleRestart})=> {
const Temporizador =({restart, tiempoInicial, tiempoAcabado, handleRestart})=> {

//Constante que va restando segundos
const [tiempoSegundos, setTiempoSegundos] = useState(tiempoInicial);
Expand Down

0 comments on commit eadd66e

Please sign in to comment.