lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
14 lines • 403 B
TypeScript
export interface DragItem {
id: number;
title: string;
subtitle: string;
date: string;
link?: string;
}
interface DragOrderListProps {
items: DragItem[];
onReorder?: (items: DragItem[]) => void;
}
export declare function DragOrderList({ items, onReorder }: DragOrderListProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=drag-order-list.d.ts.map