chore: lint

This commit is contained in:
karishmas6
2024-10-23 08:01:38 +05:30
parent 1640ea7d72
commit f92dd58ffa

View File

@@ -138,15 +138,15 @@ const Canvas = ({ width, height, onCreateRef }: CanvasProps) => {
}, [onMouseEvent]); }, [onMouseEvent]);
return ( return (
<div style={{ borderRadius: '0px 0px 5px 5px', overflow: 'hidden', backgroundColor: 'white'}}> <div style={{ borderRadius: '0px 0px 5px 5px', overflow: 'hidden', backgroundColor: 'white' }}>
<canvas <canvas
tabIndex={0} tabIndex={0}
ref={canvasRef} ref={canvasRef}
height={400} height={400}
width={900} width={900}
style={{display: 'block' }} style={{ display: 'block' }}
/> />
</div> </div>
); );
}; };