UNPKG

486 BJSXView Raw
1"use strict";
2
3import React from 'react';
4import {ApDraggable, ApDraggableStyle} from 'apeman-react-draggable';
5
6
7var html = (
8 <html>
9 <head>
10 <ApDraggableStyle></ApDraggableStyle>
11 </head>
12 <body>
13 <ApDraggable onStart={()=> {
14
15 }}
16 onMove={() => {
17
18 }}
19 onEnd={() => {
20
21 }}
22 direction="ALL">
23 <div>Drag me!</div>
24 </ApDraggable>
25 </body>
26 </html>
27);