feat: add machine data

This commit is contained in:
Aarnav Tale 2024-03-25 18:47:15 -04:00
parent b38eb0885f
commit abaf71636e
No known key found for this signature in database
10 changed files with 246 additions and 32 deletions

5
app/types/User.ts Normal file
View file

@ -0,0 +1,5 @@
export type User = {
id: string;
name: string;
createdAt: Date;
}