mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-29 21:51:59 +02:00
Fix web view height
This commit is contained in:
8
src-web/components/ImageView.tsx
Normal file
8
src-web/components/ImageView.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
interface Props {
|
||||
data: string;
|
||||
}
|
||||
|
||||
export function ImageView({ data }: Props) {
|
||||
// const dataUri = `data:image/png;base64,${window.btoa(data)}`;
|
||||
return <div>Image preview not supported until binary response support is added</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user