December 2019
Intermediate to advanced
598 pages
12h 21m
English
We are going to implement validation in both the ask and answer forms now in the following steps:
import { Form, required, minLength } from './Form';
<Form submitCaption="Submit Your Question" validationRules={{ title: [ { validator: required }, { validator: minLength, arg: 10 }, ], content: [ { validator: required }, { validator: minLength, arg: 50 }, ], }}> ...</Form>
Read now
Unlock full access