[taskboard] refactor tasks into full-page workspace
This commit is contained in:
9
app/tasks/dispatch/page.tsx
Normal file
9
app/tasks/dispatch/page.tsx
Normal 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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user