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
Empty response body
; } const src = convertFileSrc(response.bodyPath); return Response preview; }