UNPKG

apollo-form

Version:
13 lines (12 loc) 346 B
import React from 'react'; export interface ErrorMessageProps<P extends { error: string | undefined; }> { name: string; children?: React.ComponentType<P>; ignoreTouched?: boolean; } declare function ErrorMessage<P extends { error: string | undefined; }>(props: ErrorMessageProps<P>): JSX.Element; export default ErrorMessage;