import * as React from "react"; import Moveable from "../../../src/react-moveable"; import { ref } from "framework-utils"; export default class RotatableExmaple extends React.Component<{ onRotateStart?: any, onRotate?: any, onRotateEnd?: any, }> { public innerMoveable!: Moveable; public state = { target: null, }; public render() { const { onRotateStart, onRotate, onRotateEnd } = this.props; return (