Answer the question
In order to leave comments, you need to log in
Why is the component rendered extra time if useCallback is used?
Sandbox: https://codesandbox.io/s/quizzical-khayyam-55ggd
When mounting the root component, I set the double state via setTimeout:
useEffect(() => {
setTimeout(() => {
setState1((prevState) => ({
...prevState,
name: [...prevState.name, "2"]
}));
}, 3000);
setTimeout(() => {
setState1((prevState) => ({
...prevState,
status: false
}));
}, 5000);
}, []);
const getTablePaginationProps = useCallback(
() => ({
name: state1.name
}),
[state1.name]
);
<App2 {...getTablePaginationProps()} />
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question