Separated the ProfileLevel into multiple components and made a Card one
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
export interface User {
|
||||
username: string;
|
||||
name: Name;
|
||||
profilePicture: string;
|
||||
id: string;
|
||||
experience: number;
|
||||
}
|
||||
interface Name {
|
||||
first: string;
|
||||
last: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user