@dynamix-layout/react
Version:
A powerful React component for creating dynamic, resizable, and draggable layouts.
5 lines (4 loc) • 302 B
TypeScript
import { ForwardRefExoticComponent, RefAttributes } from 'react';
import { LayoutProps, TabInput, TabOutput } from '../types';
export declare const getTabOutput: (input: TabInput) => TabOutput;
export declare const DynamixLayout: ForwardRefExoticComponent<LayoutProps & RefAttributes<HTMLDivElement>>;