React json schema form RcSelect Extension
npm install react-schema-form-rc-select


The RcSelect is an add-on of react-schema-form, and it supports both single and multiple select with async retrieval data from the Internet APIs. It is a demo for extending react-schema-form with new components externally.
It is a react-schema-form field component that wraps around rc-select
get or post requestClone the project and run
```
git clone https://github.com/networknt/react-schema-form-rc-select.git
cd react-schema-form-rc-select/example
npm install
npm start
A browser tab will be automatically opened with http://localhost:3000.
``
npm install react-schema-form-rc-select
This module is an extension of react-schema-form, and it must be called from react-schema-form to handle rc-select form type. It shows how to customize the react-schema-form to add a new field and map a new form type to it. Please see App.js in the example folder for the details.
`js
import RcSelect from "react-schema-form-rc-select";
...
var schemaForm = '';
if (this.state.form.length > 0) {
schemaForm = (
);
}
``
For more detailed document, please visit the networknt document site
See our CONTRIBUTING.md for information on how to contribute.
MIT Licensed. Copyright (c) Network New Technologies Inc. 2016-2020.