增加文件管理器

This commit is contained in:
2025-08-09 13:22:54 +08:00
parent c5b72a9879
commit 5e532ad83f
8 changed files with 363 additions and 169 deletions

View File

@@ -12,7 +12,7 @@ import { Button } from '@/components/ui/button';
import { useTranslation } from '@/hooks/useTranslation';
// Lazy load heavy components
const ClaudeCodeSession = lazy(() => import('@/components/ClaudeCodeSession').then(m => ({ default: m.ClaudeCodeSession })));
const ClaudeCodeSession = lazy(() => import('./ClaudeCodeSession'));
const AgentRunOutputViewer = lazy(() => import('@/components/AgentRunOutputViewer'));
const AgentExecution = lazy(() => import('@/components/AgentExecution').then(m => ({ default: m.AgentExecution })));
const CreateAgent = lazy(() => import('@/components/CreateAgent').then(m => ({ default: m.CreateAgent })));