Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 617 Rev 639
Línea 98... Línea 98...
98
            src={image}
98
            src={image}
99
            alt={`${title} profile image`}
99
            alt={`${title} profile image`}
100
            sx={{ width: "50px", height: "50px" }}
100
            sx={{ width: "50px", height: "50px" }}
101
          />
101
          />
102
        )}
102
        )}
103
        {title ? (
103
        {url ? (
104
          <Link to={url}>
104
          <Link to={url}>
105
            <h2>{title}</h2>
105
            <h2>{title}</h2>
106
          </Link>
106
          </Link>
107
        ) : null}
107
        ) : (
-
 
108
          <h2>{title}</h2>
-
 
109
        )}
108
      </HeaderInfo>
110
      </HeaderInfo>
109
      {children}
111
      {children}
110
    </LayoutHeader>
112
    </LayoutHeader>
111
  );
113
  );
112
};
114
};