feat: nested folders (#266)

This commit is contained in:
Eliezer Castro
2025-08-06 10:26:38 -03:00
committed by GitHub
parent d4c5f59755
commit 424b1bdbc7
10 changed files with 457 additions and 79 deletions

View File

@@ -25,3 +25,13 @@ export type FoldersMessages = {
delete: string;
areYouSure: string;
};
export type TreeNodeData = {
id: string;
name: string;
detail: string;
parentFolderId: number | null;
projectId: number;
folderData: FolderType;
children?: TreeNodeData[];
};