We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef389d commit b35b9baCopy full SHA for b35b9ba
examples/with-material-ui/index.js
@@ -38,6 +38,7 @@ const WithMaterialUI = () => {
38
label="Email"
39
value={formik.values.email}
40
onChange={formik.handleChange}
41
+ onBlur={formik.handleBlur}
42
error={formik.touched.email && Boolean(formik.errors.email)}
43
helperText={formik.touched.email && formik.errors.email}
44
/>
@@ -49,6 +50,7 @@ const WithMaterialUI = () => {
49
50
type="password"
51
value={formik.values.password}
52
53
54
error={formik.touched.password && Boolean(formik.errors.password)}
55
helperText={formik.touched.password && formik.errors.password}
56
0 commit comments