I'm working on a project using NextJs and CountUp.js.
I want to be able to update the count from the previous number instead of 0.
Is this possible?
const [targetNumber, setTargetNumber] = useState(100)
<CountUp
end={ targetNumber }
duration={ 1 }
/>