Skip to content

Instantly share code, notes, and snippets.

View thomasfoster96's full-sized avatar
🏠
Working from home

Thomas Foster thomasfoster96

🏠
Working from home
View GitHub Profile
@thomasfoster96
thomasfoster96 / form-example.js
Created December 13, 2018 14:02
Symbol-keyed Hooks
// ⚠️ This is NOT the React Hooks API
const key = Symbol();
function Form() {
// ...
const name = useFormInput(key, "name");
const surname = useFormInput(key, "surname");
// ...
return (