type ActivityCountersType = { done: { today: number; total: number; }; learning: { today: number; total: number; }; streak: { count: number; }; }; type ActivityCounterType = { text: string; count: string; }; function ActivityCounter(props: ActivityCounterType) { const { text, count } = props; return (
{text}