Display information of project on home tab

This commit is contained in:
Takeshi Kimata
2024-05-06 17:51:45 +09:00
parent 3de1bd2d42
commit 6ccbf1be29
10 changed files with 177 additions and 46 deletions

View File

@@ -1,3 +1,5 @@
import { CaseType } from "./case";
export type FolderType = {
id: number;
name: string;
@@ -6,6 +8,7 @@ export type FolderType = {
parentFolderId: number | null;
createdAt: string;
updatedAt: string;
Cases: CaseType[]; // additional property
};
export type FoldersMessages = {