Harkirat Saluja
Harkirat Saluja

Reputation: 8114

How to handle form inputs and validations in React-redux?

I was working on a project which involves heavy usage of forms. I am mainly going to use react, react-router, redux and react-router-redux.

Since there are going to lot of forms with different fields,I was looking for a library which can help me with validations and submissions.

I tried searching bit and came across following libraries:-

  1. formsy-react- this uses mainly mixins but from what I read mixins are deprecated acc to this post and they dont really work well with ES6.
  2. react-bootstrap-validation - this seems to be broken with the new version of react-bootstrap.

Is there any library which can help me regarding

  1. Validation of inputs
  2. Submit information

Upvotes: 0

Views: 145

Answers (1)

Lionel Dcosta
Lionel Dcosta

Reputation: 176

Try Redux-from Its reallly cool with good documentation. Please check.

Upvotes: 2

Related Questions