Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 635 Rev 636
Línea 60... Línea 60...
60
    useEffect(() => {
60
    useEffect(() => {
61
        fetchData();
61
        fetchData();
62
    }, [test]);
62
    }, [test]);
Línea 63... Línea 63...
63
 
63
 
-
 
64
    const Content = useMemo(() => {
64
    const Content = useMemo(() => {
65
        console.log('>>: memo > ')
65
        !test ? (
66
        !test ? (
66
            <div className="container">
67
            <div className="container">
67
                <div className="row">
68
                <div className="row">
68
                    <Breadcrumbs title={backendVars.LBL_SELF_EVALUATION} />
69
                    <Breadcrumbs title={backendVars.LBL_SELF_EVALUATION} />
Línea 89... Línea 90...
89
                    action={action}
90
                    action={action}
90
                />
91
                />
91
            </div>
92
            </div>
92
        )
93
        )
93
    }, [test]);
94
    }, [test]);
94
    
95
 
95
    return (
96
    return (
96
        <section className="companies-info">
97
        <section className="companies-info">
97
            <Content
98
            <Content
98
            />
99
            />
99
        </section>
100
        </section>