Skip to content

Instantly share code, notes, and snippets.

View yuritoledo's full-sized avatar
🌌

Yuri Toledo yuritoledo

🌌
View GitHub Profile
import { withFormik, Form, Field } from 'formik'
const MyFormWithFormik = withFormik({
mapPropsToValues: () => ({
email: '',
password: '',
address: {
/* outros campos */
city: {
name: '',
@yuritoledo
yuritoledo / .eslintrc
Last active June 8, 2019 19:04
react eslint rules
{
"linebreak-style": [
"warn",
"unix"
],
"no-multiple-empty-lines": [
"warn",
{
"max": 2,
"maxEOF": 1