-
+ Canvas Area
-Drawing canvas will be rendered here
-diff --git a/frontend/src/components/CanvasArea.tsx b/frontend/src/components/CanvasArea.tsx index f1646df..e482b5e 100644 --- a/frontend/src/components/CanvasArea.tsx +++ b/frontend/src/components/CanvasArea.tsx @@ -1,15 +1,13 @@ -import React from 'react'; +import React, { forwardRef } from 'react'; import './CanvasArea.css'; +import CADCanvas from './CADCanvas'; -const CanvasArea: React.FC = () => { +const CanvasArea = forwardRef((_, ref) => { return (
Canvas Area
-Drawing canvas will be rendered here
-