ErrorMessageYou can use this component to render an error message for an input. <ErrorMessage /> will only work if it is a descendant of <Formst />.API#import {ErrorMessage} from 'formst'; <Formst formInstance={formInstance}> <ErrorMessage name="field-name" /></Formst>;CopyParameters#name: string, requiredcomponent: string | React.ComponentCopyAny extra props will be passed down to the child component.Usage#<ErrorMessage name="title" component={CustomComponent}>Copy