reamed user metrics into user data and added avatar picture and started to implement the user settings page

This commit is contained in:
Clément Le Bihan
2023-04-09 18:56:45 +02:00
parent fbf85a635e
commit 572bb0056d
6 changed files with 130 additions and 58 deletions
+7
View File
@@ -0,0 +1,7 @@
interface UserData {
partyPlayed: number;
xp: number;
avatar: string | undefined;
}
export default UserData;