Skip to content

Instantly share code, notes, and snippets.

@pena56
Created December 3, 2021 21:37
Show Gist options
  • Save pena56/ce80ae87c92fc638fc7c188a0cbdce8a to your computer and use it in GitHub Desktop.
Save pena56/ce80ae87c92fc638fc7c188a0cbdce8a to your computer and use it in GitHub Desktop.
import './PhotoCard.module.css';
function index({ photo }) {
return (
<div className="image-card">
<img alt={photo.author} src={photo.download_url} />
<p>{photo.author}</p>
</div>
);
}
export default index;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment