Last active
March 19, 2018 19:31
-
-
Save erikras/f1aa102400036a638ff3a170f2169f62 to your computer and use it in GitHub Desktop.
π Final Form Focus π§
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
import React from 'react' | |
import { Form, Field } from 'react-final-form | |
import createDecorator from 'final-form-focus' | |
const focusOnErrors = createDecorator() | |
... | |
<Form | |
onSubmit={submit} | |
decorators={[ focusOnErrors ]} // <--------- π | |
validate={validate} | |
render={({ handleSubmit }) => | |
<form onSubmit={handleSubmit}> | |
... inputs here ... | |
</form> | |
} | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need a " ' " my friend π