// src/components/Gallery.jsx import { h } from 'preact'; export default function Gallery({ images = [] }) { // Uvijek vraćamo isti 'div' wrapper da spriječimo hydration mismatch return (
{!images || images.length === 0 ? (

Nema fotografija za ovaj nalog.

) : (
{images.map((item) => ( {item.opis ))}
)}
); }