UNPKG

@undermuz/use-form

Version:
13 lines (10 loc) 277 B
import { ReactNode } from 'react'; interface IIfFormProps { children: ReactNode; hasErrors?: boolean; isCanceling?: boolean; isSending?: boolean; isSuccess?: boolean; } declare const IfForm: React.FC<IIfFormProps>; export { IIfFormProps, IfForm };