Refactor projects page's component and UI

This commit is contained in:
Takeshi Kimata
2024-03-27 23:40:46 +09:00
parent ba33af949c
commit 348bca0b40
9 changed files with 408 additions and 291 deletions

View File

@@ -0,0 +1,7 @@
export type ProjectType = {
id: number;
name: string;
detail: string;
createdAt: string;
updatedAt: string;
};