wip: initial ui done

This commit is contained in:
Gabe Farrell 2025-12-31 17:38:00 -05:00
parent b5e8d88451
commit 442221327d
5 changed files with 133 additions and 120 deletions

View file

@ -12,5 +12,5 @@ export default function RewindPage() {
useEffect(() => {
getRewindStats({ year: 2025 }).then((r) => setStats(r));
}, []);
return <>{stats !== undefined && <Rewind stats={stats} includeTime />}</>;
return <>{stats !== undefined && <Rewind stats={stats} />}</>;
}