Counter

  • Countup involves incrementally increasing a numerical value from a starting point to a specified endpoint, often used in timers and progress trackers. For more details
  • Installation
    npm i react-countup
    Script
    import CountUp from 'react-countup';
                    
    const CounterUp = () => {
        return (
            <div>
                <CountUp start={0.563} end={2.648} duration={3} decimals={3}/>
            </div>
        )
    }