@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
11 lines (10 loc) • 572 B
TypeScript
import React from "react";
export interface ApplicationContainerProps extends React.HTMLAttributes<HTMLDivElement> {
/**
* If set then the `element` is extended automatically by a `monitor-dropzone` data attribute.
* This need to match with a `dropzone-for` data attribute on available dropzones for dragged elements.
*/
monitorDropzonesFor?: string[];
}
export declare const ApplicationContainer: ({ children, className, monitorDropzonesFor, ...otherDivProps }: ApplicationContainerProps) => React.JSX.Element;
export default ApplicationContainer;