diff --git a/client/src/pages/UserProfile.jsx b/client/src/pages/UserProfile.jsx index 606c1cfd..9d49fdec 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 }) => } -
+
);