Separated the ProfileLevel into multiple components and made a Card one

This commit is contained in:
Tiago Ribeiro
2023-03-09 15:56:51 +00:00
parent aa869dd2ce
commit be7665fab8
9 changed files with 124 additions and 33 deletions

View File

@@ -1,4 +1,11 @@
export interface User {
username: string;
name: Name;
profilePicture: string;
id: string;
experience: number;
}
interface Name {
first: string;
last: string;
}