hover effect added to projects that contain a link
parent
390e679fb4
commit
59e70bd1e5
|
@ -83,7 +83,11 @@ function RenderProjects(props) {
|
|||
return list.german.map((project, index) => (
|
||||
<tr key={"a" + index}>
|
||||
<td key={"b" + index}>
|
||||
<a href={project.link}>{project.name}</a>
|
||||
{project.link === undefined ? (
|
||||
project.name
|
||||
) : (
|
||||
<a href={project.link}>{project.name}</a>
|
||||
)}
|
||||
</td>
|
||||
<td key={"c" + index}>{project.description}</td>
|
||||
<td key={"d" + index}>{project.language}</td>
|
||||
|
|
Loading…
Reference in New Issue