Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
259 Bytes
import React from "react";
import Gallery from "react-photo-gallery";
import { photos } from "./Photos";
export default function GalleryimgHome(){
return (
<div className="container my-3 border-top">
<Gallery photos={photos} />;
</div>
);
};