Files
automaker/apps/ui/src/routes/running-agents.tsx
SuperComboGamer 8d578558ff style: fix formatting with Prettier
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-21 20:31:57 -05:00

7 lines
229 B
TypeScript

import { createFileRoute } from '@tanstack/react-router';
import { RunningAgentsView } from '@/components/views/running-agents-view';
export const Route = createFileRoute('/running-agents')({
component: RunningAgentsView,
});