Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chnapy/tabbouleh-sample-rjsf
Tabbouleh sample with react-jsonschema-form form generator
https://github.com/chnapy/tabbouleh-sample-rjsf
Last synced: 10 days ago
JSON representation
Tabbouleh sample with react-jsonschema-form form generator
- Host: GitHub
- URL: https://github.com/chnapy/tabbouleh-sample-rjsf
- Owner: Chnapy
- Created: 2019-08-30T22:56:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T02:28:31.000Z (9 months ago)
- Last Synced: 2024-10-19T12:16:07.842Z (3 months ago)
- Language: TypeScript
- Homepage: https://chnapy.github.io/tabbouleh-sample-rjsf/
- Size: 1.22 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tabbouleh sample with react-jsonschema-form form generator
Basic sample which combine [tabbouleh](https://github.com/Chnapy/tabbouleh) (JSON Schema generation) with [react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form) (form generation).
[**__Preview here__**](https://chnapy.github.io/tabbouleh-sample-rjsf)
# Getting started
```
npm install
``````
npm start
```# How it works
Simplified steps:
```typescript
// generate the UserData schema
const schema = Tabbouleh.generateJSONSchema(UserData);// render the form
ReactDOM.render(, document.getElementById('root'));
```# Alternatives
See also [uniforms](https://github.com/vazco/uniforms).