UNPKG

@uiw/react-layout

Version:

React components that handle the overall layout of the page.

7 lines (6 loc) 289 B
import React from 'react'; export interface LayoutContentProps extends React.HTMLAttributes<HTMLElement> { prefixCls?: string; children?: React.ReactNode; } export declare const LayoutContent: React.ForwardRefExoticComponent<LayoutContentProps & React.RefAttributes<HTMLElement>>;