UNPKG

react-layman

Version:

A dynamic tiling layout manager made for React

9 lines (8 loc) 341 B
import { LaymanPath, Position } from './types'; interface WindowDropTargetProps { path: LaymanPath; position: Position; placement: "top" | "left" | "bottom" | "right" | "center"; } export declare function WindowDropTarget({ path, position, placement }: WindowDropTargetProps): import("react/jsx-runtime").JSX.Element; export {};