UNPKG

@minoru/react-dnd-treeview

Version:

A draggable / droppable React-based treeview component.

9 lines (8 loc) 269 B
import type { NodeModel } from "./types"; import type { PropsWithChildren, ReactElement } from "react"; type Props = PropsWithChildren<{ parentId: NodeModel["id"]; depth: number; }>; export declare const Container: <T>(props: Props) => ReactElement; export {};