Hi has anybody successfully embeded one of the react image galleries on a plasmic page?
so far ive tried these 2 and no luck
react-lightbox-gallery
react-responsive-carousel
import * as React from "react";
var Carousel = require('react-responsive-carousel').Carousel;
import { PlasmicImageGallery } from "./plasmic/normangershman_com/PlasmicImageGallery";
function ImageGallery_(props, ref) {
return <PlasmicImageGallery>
<Carousel showArrows={true} onChange={onChange} onClickItem={onClickItem} onClickThumb={onClickThumb}>
<div>
<img src="<https://images.unsplash.com/photo-1577279549270-b9e297533cdd?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1534&q=80>" />
<p className="legend">Legend 1</p>
</div>
<div>
<img src="<https://images.unsplash.com/photo-1577277625082-36df4915ebeb?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80>" />
<p className="legend">Legend 2</p>
</div>
</Carousel>
</PlasmicImageGallery>
}
const ImageGallery = React.forwardRef(ImageGallery_);
export default ImageGallery;
example of what I’m hoping to do thx