Files
yaak-mountain-loop/src-web/components/responseViewers/ImageViewer.tsx
2023-04-13 18:48:40 -07:00

16 lines
395 B
TypeScript

import { convertFileSrc } from '@tauri-apps/api/tauri';
import type { HttpResponse } from '../../lib/models';
interface Props {
response: HttpResponse;
}
export function ImageViewer({ response }: Props) {
if (response.bodyPath === null) {
return <div>Empty response body</div>;
}
const src = convertFileSrc(response.bodyPath);
return <img src={src} alt="Response preview" />;
}