formsy-react-2 icon indicating copy to clipboard operation
formsy-react-2 copied to clipboard

A form input builder and validator for React JS - v2

Results 2 formsy-react-2 issues
Sort by recently updated
recently updated
newest added

Hi, I made a component like this: ``` class SelectInput extends Formsy.Mixin { constructor(props) { super(props); this.changeValue = this.changeValue.bind(this); } changeValue(event) { this.setValue(event.currentTarget.value); } render() { const {type, ...rest} =...

Looks like the formsy project is picking up again in a new location https://github.com/formsy/formsy-react They have a HOC that removes the need for mixin. Would be good to publish an...