Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6912 Rev 7085
Línea 9... Línea 9...
9
  return (
9
  return (
10
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
10
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
11
      <ul>
11
      <ul>
12
        {options.map(({ label, href, childs, count }, index) => (
12
        {options.map(({ label, href, childs, count }, index) => (
13
          <li key={index}>
13
          <li key={index}>
14
            <Link to={href.includes('/') ? href : `/${href}`}>
14
            <Link to={href[0] === '/' ? href : `/${href}`}>
15
              {label}
15
              {label}
16
              {Boolean(count) && (
16
              {Boolean(count) && (
17
                <Badge count={count} className="position-relative" />
17
                <Badge count={count} className="position-relative" />
18
              )}
18
              )}
19
            </Link>
19
            </Link>