We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f22d33 commit e1bbde4Copy full SHA for e1bbde4
src/routes/photographs/index.js
@@ -16,7 +16,7 @@ const photographs = (props) => {
16
<h1 class={style.pageTitle}>Photographs</h1>
17
{photographs.map(photograph =>
18
(<div>
19
- <img class={style.photo} src={photograph.details.photo} />
+ <img loading="lazy" class={style.photo} src={photograph.details.photo} />
20
<caption class={style.caption}>{photograph.details.title}</caption>
21
</div>)
22
)}
0 commit comments