Profile Component now accepts a user-object as paramter.

Started to implement the settings popup
This commit is contained in:
joschuatonn
2024-05-18 08:46:04 +02:00
parent e9b042a2ea
commit d19c441539
8 changed files with 240 additions and 60 deletions

View File

@@ -3,6 +3,17 @@ export interface ptpUser {
firstName: string;
lastName: string;
username: string;
status?: string;
profilePictureUrl?: string;
}
export interface ptpTestUser {
id: string;
firstName: string;
lastName: string;
username: string;
status?: string;
profilePictureUrl?: string;
}
export interface responseModel {