0.1.0 • Published 3 years ago
taro-sortable-list
Licence
MIT
Version
0.1.0
Deps
1
Size
694 kB
Vulns
0
Weekly
0
Taro Sortable List
Demo

Install
yarn add taro-sortable-list
Usage
// page.js
import SortableList from 'taro-sortable-list'
const data = [
{ id: 1, text: 'abc'},
{ id: 2, text: 'def'}
]
export default function MyPage () {
return (
<SortableList data={data} onSort={onSort} />
)
}