UNPKG

@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/)

7 lines (6 loc) 272 B
export type UseScriptStatus = 'idle' | 'loading' | 'ready' | 'error'; export interface UseScriptOptions { shouldPreventLoad?: boolean; removeOnUnmount?: boolean; } export declare function useScript(src: string | null, options?: UseScriptOptions): UseScriptStatus;