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