UNPKG

survey-react-ui

Version:

A free MIT-licensed React UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.

9 lines (8 loc) 378 B
export declare class ReactElementFactory { static Instance: ReactElementFactory; private creatorHash; registerElement(elementType: string, elementCreator: (props: any) => React.JSX.Element): void; getAllTypes(): Array<string>; isElementRegistered(elementType: string): boolean; createElement(elementType: string, params: any): React.JSX.Element | any; }