@customgform-lib/react-customgform
Version:
Simple [React](http://facebook.github.io/react/) component acting as a thin layer over the [CustomGForm - Google Form Customizer](https://customgform.com/)
17 lines (16 loc) • 344 B
TypeScript
declare global {
interface Window {
CustomGForm: any;
}
}
export type CustomGFormProps = {
formId: string;
mode?: 'standard' | 'popup';
label?: string;
inlineStyles?: string;
buttonClassName?: string;
prefillFields?: {
[fieldId: string]: string | number;
} | null;
__formConfig?: any;
};