Files
yaak/src-web/components/ImageView.tsx
2023-04-04 07:51:41 -07:00

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