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 (

{count}

{text}

); } export function ActivityCounters(props: ActivityCountersType) { const { done, learning, streak } = props; return (
); }