create runs list page

This commit is contained in:
Takeshi Kimata
2024-04-07 19:03:43 +09:00
parent e54af6fd2f
commit b0c2168463
6 changed files with 533 additions and 2 deletions

10
frontend/types/run.ts Normal file
View File

@@ -0,0 +1,10 @@
export type RunType = {
id: number;
name: string;
configurations: number;
description: string;
state: number;
projectId: number;
createdAt: string;
updatedAt: string;
};