UNPKG

apollo-form

Version:
12 lines (11 loc) 298 B
import React from 'react'; export interface FirstErrorProps<P extends { error: string; }> { children?: React.ComponentType<P>; showIfSubmitted?: boolean; } declare function FirstError<P extends { error: string; }>(props: FirstErrorProps<P>): JSX.Element; export default FirstError;