import { Image } from "@shared/image"; export function ImagePreview({ urls }: { urls: string[] }) { return (
{urls.map((url) => (
image
))}
); }