We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I use React Countup like this:
<CountUp start={0} end={myValue} decimal="," decimals={2} delay={1000}> {({ countUpRef, start }) => ( <div> <span ref={countUpRef}>{start}</span> </div> )} </CountUp>
It works normally, but when I run my tests, I have this warning:
I believe it is because of the way that ({countUpRef, start}) is used.
Does anyone know how I can improve or fix this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I use React Countup like this:
It works normally, but when I run my tests, I have this warning:
I believe it is because of the way that ({countUpRef, start}) is used.
Does anyone know how I can improve or fix this?
The text was updated successfully, but these errors were encountered: