import { Card, Carousel } from "flowbite-react"; export const ReleaseInfoScreenshots = (props: { images: string[]; }) => { return ( {props.images.map((image: string, index: number) => ( ))} ); };