Created
March 7, 2021 18:02
-
-
Save piotrrussw/d76c8db7922a82387118174a96879938 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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