Last active
December 28, 2020 08:08
-
-
Save singh100ful/445802b8d26b435af847b90fc650f2f5 to your computer and use it in GitHub Desktop.
React Image Upload Using formik
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Input | |
| type="file" | |
| name="file" | |
| onChange={(event) =>{ | |
| setFieldValue("photo1", event.target.files[0]); | |
| }} | |
| /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment