Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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