import { useCountUp } from 'react-countup'; import CounterItem from './CounterItem'; function AboutCounter() { useCountUp({ ref: 'experienceCounter', end: 12, duration: 2 }); useCountUp({ ref: 'githubStarsCounter', end: 20, duration: 2 }); useCountUp({ ref: 'feedbackCounter', end: 92, duration: 2 }); useCountUp({ ref: 'projectsCounter', end: 77, duration: 2 }); return (