'use client' import React from 'react' import { Rect, } from 'react-konva' type Props = { rect: { startX: number, startY: number, endX: number, endY: number, }, } const DrawingArea = (props: Props) => { const { rect } = props const width = rect.endX - rect.startX const height = rect.endY - rect.startY return } export default DrawingArea