1.0.0 • Published 2 years ago

@jewon-yeon/sortable v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

Script

npm install @jewon-yeon/sortable

사용

import SortableList from '@jewon-yeon/sortable';

function App() {
  const onDropItem = (newList) => {
    console.log(newList);
  }

  const onClickItem = (index) => {
    alert(index);
  }

  const renderItem = (
    <div>
      ...
    </div>
  );

  return (
    <SortableList
      data={data}
      renderItem={renderItem}
      onDropItem={onDropItem}
      onClickItem={onClickItem}
    />
  );
}