@readr-media/react-feedback
Version:
## Installation `yarn install`
19 lines • 632 B
TypeScript
/**
* @typedef {import('../typedef').Form} Form
*
* @param {Object} props
* @param {Form[]} props.forms
* @param {boolean} [props.shouldUseRecaptcha=true]
* @param {string} [props.theme='covid19']
* @param {string} [props.storageKey='corvid-19-query-user-id']
* @return {JSX.Element}
*/
export default function Feedback({ forms, shouldUseRecaptcha, theme, storageKey, }: {
forms: Form[];
shouldUseRecaptcha?: boolean;
theme?: string;
storageKey?: string;
}): JSX.Element;
export type Form = import('../typedef').Form;
import Form from "./form/form";
//# sourceMappingURL=index.d.ts.map