UNPKG

quick-ui-design

Version:

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

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