feat: add functional machine overview page and fix types

This commit is contained in:
Aarnav Tale
2024-06-02 01:33:40 -04:00
parent c08203cc76
commit 3ffbabd7fc
12 changed files with 458 additions and 289 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
export type User = {
id: string;
name: string;
createdAt: Date;
export interface User {
id: string
name: string
createdAt: string
}