Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 382 | Rev 389 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 382 Rev 388
Línea 37... Línea 37...
37
 
37
 
38
 
38
 
39
    /**
39
    /**
-
 
40
     * Continue to the next section
-
 
41
     */
-
 
42
    const handleNext = () =>{
40
     * Continue to the next section
43
 
-
 
44
        if(validateSection()){
-
 
45
            setPage(page + 1);
-
 
46
            setErrors([]);
-
 
47
        }
Línea 41... Línea 48...
41
     */
48
 
Línea 42... Línea 49...
42
    const handleNext = () => validateSection() && setPage(page + 1);
49
    }