Skip to content

Tag: react-hooks

How make filter in sub component in reactjs?

The list doesn’t update after sorting in the parent component. console.log(‘sortedList’, sorted); – sort correctly ListFilter component: What is wrong? Answer The re-render is skipped because you have mutated state. It was mutated from within a child component making it even harder to …

React hooks callback ref pattern

I often face this situation with react callbacks: The problem is. I consider my component should only load one time. And with useEffect, i have to set onLoad in the dependencies, this cause any change to the onLoad prop to trigger the effect. I generally solve this issue with a ref It works well and solve a l…