Skip to content

Commit

Permalink
ft: reduce number of images
Browse files Browse the repository at this point in the history
  • Loading branch information
devjamesnjoroge committed Apr 30, 2023
1 parent dfc9cc3 commit 67e14b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ImageGallery.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState, useEffect } from 'react';

function ImageDisplay() {
const [numImages, setNumImages] = useState(164); // replace with the actual number of images
const [numImages, setNumImages] = useState(60); // replace with the actual number of images
const [isLoading, setIsLoading] = useState(true);
const [images, setImages] = useState([]);

Expand Down

0 comments on commit 67e14b7

Please sign in to comment.