This commit is contained in:
@@ -16,22 +16,23 @@ export function GitGallery(props) {
|
||||
name={repo.name}
|
||||
description={repo.description}
|
||||
avatarUrl={repo.avatar_url}
|
||||
key={repo.full_name}
|
||||
/>
|
||||
);
|
||||
});
|
||||
|
||||
props.publicGithubRepos.forEach((repo) => {
|
||||
links.push(
|
||||
<ProjectCard
|
||||
classNames={styles.card_github}
|
||||
url={repo.html_url}
|
||||
fullName={repo.full_name}
|
||||
name={repo.name}
|
||||
description={repo.description}
|
||||
avatarUrl={repo.avatar_url}
|
||||
/>
|
||||
);
|
||||
});
|
||||
// props.publicGithubRepos.forEach((repo) => {
|
||||
// links.push(
|
||||
// <ProjectCard
|
||||
// classNames={styles.card_github}
|
||||
// url={repo.html_url}
|
||||
// fullName={repo.full_name}
|
||||
// name={repo.name}
|
||||
// description={repo.description}
|
||||
// avatarUrl={repo.avatar_url}
|
||||
// />
|
||||
// );
|
||||
// });
|
||||
|
||||
return (
|
||||
<div className={styles.cardContainer}>
|
||||
|
||||
Reference in New Issue
Block a user