Skip to content

Instantly share code, notes, and snippets.

@piotrrussw
Created March 7, 2021 18:02
Show Gist options
  • Save piotrrussw/d76c8db7922a82387118174a96879938 to your computer and use it in GitHub Desktop.
Save piotrrussw/d76c8db7922a82387118174a96879938 to your computer and use it in GitHub Desktop.
function ReactCanvasPaint(props) {
return (
<canvas
ref={canvas}
onMouseDown={onDown}
onTouchStart={onDown}
onMouseUp={onUp}
onTouchEnd={onUp}
onMouseLeave={onUp}
onMouseMove={onMove}
onTouchMove={onMove}
width={props.width}
height={props.height}
/>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment