Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5128 Rev 5173
Línea 4... Línea 4...
4
import ChatHelper from '../../../chat/chatHelper/ChatHelper'
4
import ChatHelper from '../../../chat/chatHelper/ChatHelper'
5
import UserImageDropdown from './user-dropdown/UserImageDropdown'
5
import UserImageDropdown from './user-dropdown/UserImageDropdown'
6
import SearchInput from './searchbox/SearchInput'
6
import SearchInput from './searchbox/SearchInput'
7
import ResponsiveNavbar from './responsive-navbar/ResponsiveNavbar'
7
import ResponsiveNavbar from './responsive-navbar/ResponsiveNavbar'
Línea 8... Línea 8...
8
 
8
 
9
const Navbar = ({ navbarVars }) => {
9
const Navbar = ({ navbarVars, LABELS }) => {
10
  const {
10
  const {
11
    image,
11
    image,
12
    fullName,
12
    fullName,
13
    companyVars,
13
    companyVars,
Línea 75... Línea 75...
75
        image={image}
75
        image={image}
76
        fullName={fullName}
76
        fullName={fullName}
77
        linkAdmin={linkAdmin}
77
        linkAdmin={linkAdmin}
78
        linkImpersonate={linkImpersonate}
78
        linkImpersonate={linkImpersonate}
79
        sessionImage={sessionImage}
79
        sessionImage={sessionImage}
-
 
80
        LABELS={LABELS}
80
      />
81
      />
81
      {window.innerWidth < 1000 && !isChatPage && <ChatHelper />}
82
      {window.innerWidth < 1000 && !isChatPage && <ChatHelper />}
82
    </>
83
    </>
83
  )
84
  )
84
}
85
}