From 50a21304efa2cd61c43d5520a15254441973a7b3 Mon Sep 17 00:00:00 2001 From: awlfccamp Date: Mon, 30 Sep 2024 20:09:01 -0500 Subject: [PATCH] update userprofile to mui --- client/src/pages/UserProfile.jsx | 56 +++++++++++++++++++++++++------- 1 file changed, 45 insertions(+), 11 deletions(-) diff --git a/client/src/pages/UserProfile.jsx b/client/src/pages/UserProfile.jsx index 606c1cfdd..9d49fdec9 100644 --- a/client/src/pages/UserProfile.jsx +++ b/client/src/pages/UserProfile.jsx @@ -4,31 +4,65 @@ import UserTable from '../components/presentational/profile/UserTable'; import UserEvents from '../components/presentational/profile/UserEvents'; import UserTeams from '../components/presentational/profile/UserTeams'; import { UserProvider, UserContext } from '../context/userContext'; +import { Box, Typography, Grid } from '@mui/material'; const UserProfile = (props) => ( -
-
-

My Profile

-
+ + + + My Profile + + {({ user, removeOption }) => ( )} -
-

My Upcoming Events

-
+ + + My Upcoming Events + + {({ events }) => } -
-

My Teams

-
+ + + My Teams + + {({ teams }) => } -
+
);