Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7273 Rev 7274
Línea 5... Línea 5...
5
  if (!options.length) return null
5
  if (!options.length) return null
Línea 6... Línea 6...
6
 
6
 
7
  return (
7
  return (
8
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
8
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
9
      <ul>
9
      <ul>
10
        {options.map(({ label, href, childs, count }, index) => {
10
        {options.map(({ label, href, childs = [], count }, index) => {
11
          const redirect = Boolean(childs.length)
11
          const redirect = Boolean(childs?.length)
Línea 12... Línea 12...
12
          const to = href[0] === '/' ? href : `/${href}`
12
          const to = href[0] === '/' ? href : `/${href}`
13
 
13
 
14
          return (
14
          return (