import { __ } from '@wordpress/i18n'; import { UnsplashImage } from './UnsplashImage'; export const UnsplashImages = ({ images, isInsertingImage, onClick, loading, }) => { const imageLength = images?.length ?? 10; if (!loading && !images.length) { return __('No images found.', 'extendify-local'); } return (