Workspaces in Workspaces all around

This commit is contained in:
2026-02-19 01:49:15 +00:00
parent 72bca6cd42
commit dd8ab84df5
84 changed files with 3047 additions and 749 deletions
@@ -15,6 +15,7 @@ type FileGridProps = {
onDelete: (entry: DirEntry) => void;
onRename: (entry: DirEntry, newName: string) => void;
onChat: (entry: DirEntry) => void;
onDownload: (entry: DirEntry) => void;
onSelect: (names: Set<string>) => void;
onCut: () => void;
onCopy: () => void;
@@ -63,6 +64,7 @@ export const FileGrid = ({
onDelete,
onRename,
onChat,
onDownload,
onSelect,
onCut,
onCopy,
@@ -143,6 +145,7 @@ export const FileGrid = ({
onDelete={onDelete}
onRename={onRename}
onChat={onChat}
onDownload={onDownload}
onSelect={handleSelect}
onCut={onCut}
onCopy={onCopy}