@try-at-software/input-elements
Version:
A package providing different input elements that are extensible and easily configurable for your custom needs.
9 lines (8 loc) • 337 B
TypeScript
import * as React from 'react';
import { FormText } from './Types';
interface IFormTextRendererProps {
text: FormText;
}
export declare const FormTextRenderer: React.MemoExoticComponent<(props: IFormTextRendererProps) => JSX.Element>;
export declare function materializeErrorMessage(error: FormText): JSX.Element;
export {};