import { memo } from 'react'; function StatisticsCard({ title, text }) { return (

{title}

{text}

); } export default memo(StatisticsCard);