Last active
November 27, 2019 13:57
-
-
Save yuritoledo/fcca512185861d445f8e6e277bc39040 to your computer and use it in GitHub Desktop.
This file contains 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
// {...} | |
<div> | |
<form> | |
<input placeholder="Name" {...formik.getFieldProps("name")} /> | |
<br /> | |
<input placeholder="Email" {...formik.getFieldProps("email")} /> | |
<br /> | |
<input placeholder="Password" {...formik.getFieldProps("password")} /> | |
<br /> | |
<input | |
placeholder="confirm password" | |
{...formik.getFieldProps("confirmPassword")} | |
/> | |
<br /> | |
<input | |
placeholder="Address" | |
{...formik.getFieldProps("address.street")} | |
/> | |
<br /> | |
<input placeholder="City" {...formik.getFieldProps("address.city")} /> | |
</form> | |
<div style={{ textAlign: "left" }}> | |
<pre>{JSON.stringify(formik.values, null, 2)}</pre> | |
</div> | |
</div> | |
// {...} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment