massdriver-rjsf
v1.0.31
Published
Massdriver's wrapper for RJSF providing access to custom fields, widgets, & templates.
Downloads
5
Readme
massdriver-forms
Massdriver's wrapper for RJSF.
Getting Started
Run
npm install @massdriver/forms
Create a new
Form.js
file.Create a wrapper with your custom Form services configuration:
import createForm from '@massdriver/forms'
const Form = props => {
const MassdriverForm = createForm({
services: {
// services go here
}
})
return (
<MassdriverForm {...props} />
)
}