Mochamad Farchan Ardiatama
Mochamad Farchan Ardiatama
Any update?
For example `date={Date.now() - 3000}` is show **00:00:00:00** not **Completed.**
How to prevent re-rendering with custom renderer ? So, I'll implement countdown to table, each row has time. When time is over, it will hit API once. In my case,...
Sorry for late response, please check my problem https://codesandbox.io/s/nice-liskov-8isml Refresh and see console log
Please check my update https://codesandbox.io/s/nice-liskov-8isml, onComplete not triggered when time has over on data 1
Great idea, I'm waiting for your update. Thank you 👍
A temporary solution to workaround prevents re-render when hit API, use delay / setTimeout in react `useEffect(() => { try { setTimeout(() => { //HIT API HERE }, 2000); }...