import React from 'react'; import { Button } from './ui/button'; import { X } from 'lucide-react'; function ImageViewer({ file, onClose }) { const imagePath = `/api/projects/${file.projectName}/files/content?path=${encodeURIComponent(file.path)}`; return (

{file.name}

{file.name} { e.target.style.display = 'none'; e.target.nextSibling.style.display = 'block'; }} />

Unable to load image

{file.path}

{file.path}

); } export default ImageViewer;