Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Created October 13, 2020 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljmotta/edd1486e91d1293f7632a320df1bb715 to your computer and use it in GitHub Desktop.
Save ljmotta/edd1486e91d1293f7632a320df1bb715 to your computer and use it in GitHub Desktop.
Base64Png Editor Initial Render
export const Base64PngEditor = React.forwardRef<EditorApi, Props>((props, forwardedRef) => {
// ...
return (
<div className={"base64png-editor--viewport"}>
<img
ref={imageRef}
className={"base64png-editor--image"}
src={`data:image/png;base64,${originalContent}`}
alt={"Original"}
/>
<canvas
ref={canvasRef}
className={"base64png-editor--canvas"}
/>
</div>
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment