⚰️ Remove dead code

This commit is contained in:
ajnart
2022-05-23 11:19:40 +02:00
parent 72b3097ad1
commit 94ee90eebb
2 changed files with 0 additions and 90 deletions

View File

@@ -1,20 +0,0 @@
import { useSortable } from '@dnd-kit/sortable';
import { CSS } from '@dnd-kit/utilities';
import { AppShelfItem } from '../AppShelf/AppShelf';
export function SortableItem(props: any) {
const { attributes, listeners, setNodeRef, transform, transition } = useSortable({
id: props.id,
});
const style = {
transform: CSS.Transform.toString(transform),
transition,
};
return (
<div ref={setNodeRef} style={style} {...attributes} {...listeners}>
<AppShelfItem service={props.service} />
</div>
);
}