import { stats } from "@/constants"; import NumberTicker from "../widgets/num-tick"; const Statistics = () => { return (
{stats.map(({ title, count }) => (

+

{title}

))}
); }; export default Statistics;