Implemented a simple page to view the currently registered users

This commit is contained in:
Tiago Ribeiro
2023-04-14 12:34:56 +01:00
parent 399e222791
commit f88db929f4
16 changed files with 433 additions and 32 deletions

View File

@@ -1,11 +1,10 @@
export interface User {
email: string;
name: Name;
name: string;
profilePicture: string;
id: string;
experience: number;
type: Type;
}
interface Name {
first: string;
last: string;
}
export type Type = "student" | "teacher" | "admin" | "owner" | "developer";