[taskboard] migrate fleet console to nextjs
This commit is contained in:
9
app/agents/page.tsx
Normal file
9
app/agents/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { AgentsClient } from "@/components/agents-client";
|
||||
import { listFleetAgents } from "@/lib/agents";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export default async function AgentsPage() {
|
||||
const agents = await listFleetAgents();
|
||||
return <AgentsClient agents={agents} />;
|
||||
}
|
||||
Reference in New Issue
Block a user