stream-chat-react
Version:
React components to create chat conversations or livestream style chat
8 lines (7 loc) • 358 B
TypeScript
import React, { PropsWithChildren } from 'react';
export type DragAndDropContainerProps = PropsWithChildren<{
className?: string;
draggable?: boolean;
onSetNewOrder?: (newOrder: number[]) => void;
}>;
export declare const DragAndDropContainer: ({ children, className, draggable, onSetNewOrder, }: DragAndDropContainerProps) => React.JSX.Element;