Applying validation
Last updated
Last updated
Once we have both and defined, we can to apply them to see the working result.
There are multiple ways to apply the validation to the forms in our application. Either of them are suitable in different situations.
We can use a FormProvider
component to apply the validation rules and message application-wide. That implies that all the forms in the application abide by the defined rules, which is what you want in most of the cases.
Render a FormProvider
on the root level of your application, close to other providers you may have (for example, from Redux or Apollo).
A validation schema can be applied to a specific form. By doing so, it can the application-wide schema on demand.