"use client";
/* Today: what is waiting, what this counter has done today, and what just happened. */
import { Suspense } from "react";
import { MBody, MDay, MEmpty, MKick, MRow, MRule, MSection, MTabs, MTodo, MTop, MTopAction } from "@/components/m";
import TodayBanner from "@/components/m/today/TodayBanner";
import { useToday } from "@/components/m/today/useToday";
export default function MToday() {
const t = useToday();
return (
<>
} />
{t.kicker}
{t.todo.length === 0
?
: t.todo.map((r) => )}
{t.recent.length === 0
?
: t.recent.map((r) => )}
>
);
}