import type { CarouselBlock } from "@/types";
import GalleryClient from "./gallery.client";

interface Props {
  data: CarouselBlock;
}

export default function Gallery({ data }: Props) {
  return <GalleryClient data={data} />;
}
