mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
import React from "react";
|
|
import ImageGallery from 'react-image-gallery';
|
|
|
|
export default function ResponsiveCarousel(props) {
|
|
return (
|
|
<div>
|
|
<div className="carousel-container">
|
|
<ImageGallery items={props.children}/>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |