Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
444 Bytes
import React from "react";
import Layout from './Layout';
import Gallery from "react-photo-gallery";
import { photos } from "./Photos";
export default function Galleryimg(){
return (
<Layout
title=""
description=""
className="">
<div className="container-fluid my-3">
<h2 className="mb-3 p-3 text-center text-success font-weight-bold h2">Gallery</h2>
<Gallery photos={photos} />;
</div>
</Layout>
);
};