Fix web view height

This commit is contained in:
Gregory Schier
2023-04-04 07:51:41 -07:00
parent c5d6e7d74a
commit b48ed0399e
5 changed files with 29 additions and 12 deletions

View 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>;
}