UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 277 B
import { FormListProps } from 'antd/es/form'; import { FC } from 'react'; import { FROM_LIST } from '../../../Types'; export interface IFormList { ctype: typeof FROM_LIST; props: FormListProps; } declare const FormList: FC<IFormList>; export default FormList;