mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-18 15:06:58 +01:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import { convertFileSrc } from '@tauri-apps/api/core';
|
|
|
|
interface Props {
|
|
bodyPath: string;
|
|
}
|
|
|
|
export function ImageViewer({ bodyPath }: Props) {
|
|
const src = convertFileSrc(bodyPath);
|
|
return <img src={src} alt="Response preview" className="max-w-full max-h-full pb-2" />;
|
|
}
|