const CounterItem = ({ title, counter, measurement }) => { return (

{counter} {measurement}

{title}
); }; export default CounterItem;