Refactor folders pane's component and UI

This commit is contained in:
Takeshi Kimata
2024-04-06 21:35:34 +09:00
parent 348bca0b40
commit d3071cd696
6 changed files with 294 additions and 184 deletions

9
frontend/types/folder.ts Normal file
View File

@@ -0,0 +1,9 @@
export type FolderType = {
id: number;
name: string;
detail: string;
projectId: number;
parentFolderId: number | null;
createdAt: string;
updatedAt: string;
};