Skip to content

Instantly share code, notes, and snippets.

@luanlmd
Created October 21, 2019 17:08
Show Gist options
  • Save luanlmd/3a1c44107439ad5fdec5b9956c468412 to your computer and use it in GitHub Desktop.
Save luanlmd/3a1c44107439ad5fdec5b9956c468412 to your computer and use it in GitHub Desktop.
import { useState } from 'react';
export const useForm = (initialValues: any) => {
const [values, setValues] = useState(initialValues);
return [values, (e: any) => {
setValues({
...values,
[e.target.name]: e.target.value
});
}];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment