vydimitrov / react-countdown-circle-timer

Lightweight React/React Native countdown timer component with color and progress animation based on SVG
MIT License
692 stars 87 forks source link

TypeError: s is not a function #123

Closed saviomartin closed 3 years ago

saviomartin commented 3 years ago

scrnli_08_05_2021_18-39-48

I'm getting this error.

vydimitrov commented 3 years ago

How do you use the component? Can you share your code for the component?

saviomartin commented 3 years ago

I somehow was able to fix it up!

talha131 commented 2 years ago

I faced the same issue. My mistake was making a string the child of CountdownCircleTimer.

<CountdownCircleTimer>
    hello
</CountdownCircleTimer>

It should be a function.

Like

<CountdownCircleTimer>
    {({ remainingTime }) => remainingTime}
</CountdownCircleTimer>

Hope it helps someone.