Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1538 Rev 1541
Línea 23... Línea 23...
23
 
23
 
24
      <List sx={{ mt: 1 }}>
24
      <List sx={{ mt: 1 }}>
25
        {items.map(({ value, name }, index) => (
25
        {items.map(({ value, name }, index) => (
26
          <ListItem
26
          <ListItem
-
 
27
            key={value}
-
 
28
            sx={{
27
            key={value}
29
              p: 0,
-
 
30
              fontWeight: currentIndex === index ? 'bold' : 'normal'
28
            sx={{ fontWeight: currentIndex === index ? 'bold' : 'normal' }}
31
            }}
29
          >
32
          >
30
            <ListItemButton onClick={() => handleChange(index, value)}>
33
            <ListItemButton onClick={() => handleChange(index, value)}>
31
              <ListItemText id={value} primary={name} />
34
              <ListItemText id={value} primary={name} />
32
            </ListItemButton>
35
            </ListItemButton>