0.1.5-beta • Published 1 year ago

@ctnetworks/typeform-rjsf v0.1.5-beta

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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