Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 442 Rev 450
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 = () => {
44
     * Continue to the next section
47
        if (validateSection()) {
-
 
48
            section.status = 1;
-
 
49
            setPage(page + 1);
-
 
50
        } else {
-
 
51
            section.status = 0;
-
 
52
        }
45
     */
53
 
Línea 46... Línea 54...
46
    const handleNext = () => validateSection() && setPage(page + 1);
54
    }
Línea 47... Línea 55...
47
        
55
 
48
 
56