File size: 259 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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>
  );
};