refactor: claude status, command menu, and image viewer

- Refactored ClaudeStatus to TypeScript and moved it to the chat view subcomponents.
- Refactored CommandMenu to TypeScript, moved it to the chat view subcomponents
- Refactored ImageViewer to TypeScript and moved it to the file-tree view subcomponents.
- Moved FileTree to the file-tree view folder.
This commit is contained in:
Haileyesus
2026-02-20 07:39:25 +03:00
parent 0e8ac25768
commit bf4bc361bc
7 changed files with 347 additions and 460 deletions

View File

@@ -1,7 +1,7 @@
import React, { useEffect } from 'react';
import ChatInterface from '../../chat/view/ChatInterface';
import FileTree from '../../file-tree/FileTree';
import FileTree from '../../file-tree/view/FileTree';
import StandaloneShell from '../../StandaloneShell';
import GitPanel from '../../git-panel/view/GitPanel';
import ErrorBoundary from '../../ErrorBoundary';