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]);
return (
<div style={{ borderRadius: '0px 0px 5px 5px', overflow: 'hidden', backgroundColor: 'white'}}>
<canvas
tabIndex={0}
ref={canvasRef}
height={400}
width={900}
style={{display: 'block' }}
<div style={{ borderRadius: '0px 0px 5px 5px', overflow: 'hidden', backgroundColor: 'white' }}>
<canvas
tabIndex={0}
ref={canvasRef}
height={400}
width={900}
style={{ display: 'block' }}
/>
</div>
</div>
);
};