import * as React from "react";
import Moveable from "@/react-moveable";
export default function App() {
return
Target1
{
e.target.style.cssText += `transform: ${e.transform}`;
}}
onResize={e => {
e.target.style.cssText += `width: ${e.boundingWidth}px;`
+ `height: ${e.boundingHeight}px;`
+ `transform: ${e.drag.transform}`;
}}
onScale={e => {
e.target.style.cssText += `transform: ${e.drag.transform}`;
}}
/>
;
}