Create generic TasksTable component

This commit is contained in:
Ken Hibino
2022-04-02 20:40:49 -07:00
parent cd6947ef20
commit 97d969171f
3 changed files with 479 additions and 440 deletions

View File

@@ -0,0 +1,8 @@
export type TaskState =
| "active"
| "pending"
| "aggregating"
| "scheduled"
| "retry"
| "archived"
| "completed";