UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

13 lines (12 loc) 361 B
import { LayoutProps } from 'antd'; import { FC } from 'react'; import { LAYOUT, TComponentProps } from '../../Types'; interface IChildren extends Omit<LayoutProps, 'children'> { children: TComponentProps[]; } export interface ILayout { ctype: typeof LAYOUT; props: IChildren; } declare const Layout: FC<ILayout>; export default Layout;