npm install @mizmoz/react-formsThis is in the very early stages of development so wouldn't recommend using unless you like the
pain of large, frequent changes to the API.
// Look at this implementation for the form handling
http://redux-form.com/6.1.0/examples/syncValidation/
js
value="#ffeeee"
onChange={this.onChange}
disableAlpha
/>
`$3
Select drop down
`js
name="food"
onChange={onChange}
options={options}
/>
`Options
``js// Label & value
const options = OrderedMap([
['Cheese', 'cheese'],
]);
// Groups
const options = OrderedMap([
[
'Dark Colours', OrderedMap([
['Black'],
['Navy Blue'],
]),
],
]);