Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6707 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6707 Rev 6753
Línea 13... Línea 13...
13
  country,
13
  country,
14
  connections,
14
  connections,
15
  linkAdmin,
15
  linkAdmin,
16
  linkImpersonate,
16
  linkImpersonate,
17
}) => {
17
}) => {
18
  const responsiveNavbar = useRef()
18
  const navRef = useRef(null)
19
  useOutsideClick(responsiveNavbar, () => toggleMenu())
19
  useOutsideClick(navRef, () => toggleMenu())
Línea 20... Línea 20...
20
 
20
 
21
  return (
-
 
22
    <nav
21
  return (
23
      className={`responsiveNavbar ${show ? 'slideIn' : 'slideOut'} p-0`}
-
 
24
      ref={responsiveNavbar}
-
 
25
    >
22
    <div className={`responsive_navbar ${show && 'show'}`} ref={navRef}>
26
      <ProfileInfo
23
      <ProfileInfo
27
        connections={connections}
24
        connections={connections}
28
        country={country}
25
        country={country}
29
        description={description}
26
        description={description}
Línea 33... Línea 30...
33
        linkImpersonate={linkImpersonate}
30
        linkImpersonate={linkImpersonate}
34
        name={name}
31
        name={name}
35
      />
32
      />
36
      <SuggestWidget title="Mis Grupos:" url="/helpers/my-groups" />
33
      <SuggestWidget title="Mis Grupos:" url="/helpers/my-groups" />
37
      <SuggestWidget title="Grupos:" url="/helpers/groups-suggestion" />
34
      <SuggestWidget title="Grupos:" url="/helpers/groups-suggestion" />
38
    </nav>
35
    </div>
39
  )
36
  )
40
}
37
}
Línea 41... Línea 38...
41
 
38