import { GalleryStoryblok } from '../../typings/generated/components-schema' import LmGalleryRow from './LmGalleryRow' import { useStylesAdvanced } from '../../utils/hooks/useStylesAdvanced' type LmGalleryProps = { content: GalleryStoryblok } export default function LmGallery({ content }: LmGalleryProps) { const imageStyles = useStylesAdvanced({ props: content.image_style }).classes return (
{content.content?.map((blok) => ( ))}
) }