UNPKG
table-dragger
Version:
latest (2.0.5)
next (2.0.2)
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Drag and sort columns and rows of table
sindu12jun.github.io/table-dragger/
sindu12jun/table-dragger
table-dragger
/
src
/
index.js
9 lines
(7 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Created by lijun on 2016/12/4. */
import
'./main.css'
;
import
Drag
from
'./drag'
;
const
create
= (
el, options
) =>
Drag
.
create
(el, options);
export
default
create;