vval
v0.1.0
Published
Store and validate values for React
Downloads
70
Readme
vval
Store and validate values for React
Install
$ npm install vval
Usage
import Vval from "vval";
import * as yup from "yup";
<Vval
schema={yup.object().shape({
email: yup
.string()
.email()
.required(),
password: yup
.string()
.min(8)
.required()
})}
initialValues={{
email: "",
password: ""
}}
render={({ values, handleValue, validate }) => (
<>
<EmailInput value={values.email} onChange={handleValue} />
<PasswordInput value={values.password} onChange={handleValue} />
</>
)
/>
Contribution
- Fork it ( http://github.com/argano/vval )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
License
MIT