|
|
|
|
|
by tuckwat
1490 days ago
|
|
These exist, such as: https://github.com/rjsf-team/react-jsonschema-form We also built one from scratch and used it in client-facing production applications (Angular + React Native). The biggest hurdle is that JSON schema is great at describing the shape of the form data but not a great job at describing how the form looks. We ended up creating a separate "presentation" schema which handled things like order of the form, rows/columns, widgets to use, and much more. |
|