mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-22 15:47:54 +01:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
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>;
|
|
}
|