gbclient/app/chat/components/projector/image-viewer.tsx

14 lines
312 B
TypeScript

import React from 'react';
import '../../styles/projector.css';
interface ImageViewerProps {
url: string;
}
export function ImageViewer({ url }: ImageViewerProps) {
return (
<div className="image-container">
<img src={url} className="projector-image" alt="Projected content" />
</div>
);
}