Skip to content

Commit

Permalink
Remove isDirty reference from README (jaredpalmer#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
slightlytyler authored and jaredpalmer committed Oct 5, 2017
1 parent c7c50bb commit 4727f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ const Example = () => (

const CustomInputComponent: React.SFC<FormikProps<Values> & CustomInputProps> => ({
field, // { name, value, onChange, onBlur }
form: { touched, errors } // also values, setXXXX, handleXXXX, isDirty, isValid, status, etc.
form: { touched, errors } // also values, setXXXX, handleXXXX, dirty, isValid, status, etc.
...props
}) => (
<div>
Expand Down

0 comments on commit 4727f03

Please sign in to comment.