import { convertFileSrc } from '@tauri-apps/api/core'; interface Props { bodyPath: string; } export function ImageViewer({ bodyPath }: Props) { const src = convertFileSrc(bodyPath); return Response preview; }