mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 13:43:39 +01:00
10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
interface Props {
|
|
data: string;
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
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>;
|
|
}
|