@ctnetworks/typeform-rjsf
v0.1.2-beta
Published
A customizable form renderer built with React and RJSF
Downloads
241
Maintainers
Readme
@ctnetworks/typeform-rjsf
A customizable form renderer built with React and RJSF that provides a Typeform-like experience.
Installation
npm install @ctnetworks/typeform-rjsf
Usage
import { FormRenderer, TypeformRjsfSchema } from "@ctnetworks/typeform-rjsf";
const schema: TypeformRjsfSchema = {
// Your schema here
};
const handleSubmit = (formData: JSONSchema7) => {
// Handle form submission
};
<FormRenderer schema={schema} handleSubmit={handleSubmit} />