[taskboard] refactor tasks into full-page workspace

This commit is contained in:
2026-03-07 13:34:15 -08:00
parent 430dcd209b
commit 2bf137a437
11 changed files with 452 additions and 351 deletions

View File

@@ -0,0 +1,9 @@
import { DispatchHistory } from "@/components/dispatch-history";
import { listTaskEvents } from "@/lib/tasks";
export const dynamic = "force-dynamic";
export default async function TasksDispatchPage() {
const events = await listTaskEvents(undefined, 50);
return <DispatchHistory events={events} />;
}