stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 383 B
TypeScript
import type { PropsWithChildren } from 'react';
import React 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;