Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 450 Rev 451
Línea 2... Línea 2...
2
import Question from "../question/Question";
2
import Question from "../question/Question";
Línea 3... Línea 3...
3
 
3
 
Línea 4... Línea 4...
4
const Section = (props) => {
4
const Section = (props) => {
5
 
5
 
Línea 6... Línea 6...
6
    // get props
6
    // get props
7
    const { section, backendVars, handleAnswer, page, setPage, total, index } = props;
7
    const { section, backendVars, handleAnswer, page, setPage, total, index  } = props;
8
 
8
 
Línea 9... Línea 9...
9
    //init states 
9
    //init states 
10
    const [errors, setErrors] = useState([]);
10
    const [errors, setErrors] = useState([]);
11
 
11
    
12
 
12
 
Línea 41... Línea 41...
41
 
41
 
42
 
42
 
43
    /**
43
    /**
44
     * Continue to the next section
-
 
45
     */
-
 
46
    const handleNext = () => {
-
 
47
        if (validateSection()) {
44
     * Continue to the next section
48
            section.status = 1;
-
 
49
            setPage(page + 1);
-
 
50
        } else {
-
 
51
            section.status = 0;
-
 
52
        }
-
 
53
 
45
     */
Línea 54... Línea 46...
54
    }
46
    const handleNext = () => validateSection() && setPage(page + 1);
Línea 55... Línea 47...
55
 
47
        
56
 
48