Added link in ProjectProfile and fork count to ProjectCard
This commit is contained in:
committed by
Kurt Hutten
parent
dd152709ff
commit
7540c908e7
@@ -40,7 +40,10 @@ const ProjectsList = ({
|
||||
style={{ gridTemplateColumns: 'repeat(auto-fit, minmax(16rem, 1fr))' }}
|
||||
>
|
||||
{filteredProjects.map(
|
||||
({ title, mainImage, user, Reaction, cadPackage }, index) => (
|
||||
(
|
||||
{ title, mainImage, user, Reaction, cadPackage, childForks },
|
||||
index
|
||||
) => (
|
||||
<ProjectCard
|
||||
key={index}
|
||||
title={title}
|
||||
@@ -48,6 +51,7 @@ const ProjectsList = ({
|
||||
user={user}
|
||||
Reaction={Reaction}
|
||||
cadPackage={cadPackage}
|
||||
childForks={childForks}
|
||||
/>
|
||||
)
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user