Quick Tip: Memoizing change handlers in React Components

added by JavaScript Kicks
10/2/2018 9:17:57 AM

1098 Views

Let's consider a basic form with a controlled component in react: We keep a state, pass the value to our InputComponent, and update the value with the value we get from it. Now consider this larger form. I like to use this arrow-function-that-returns-another-arrow-function (what do you call this?)


0 comments