diff --git a/client/src/components/presentational/profile/UserTable.jsx b/client/src/components/presentational/profile/UserTable.jsx index ed18d02de..aa8913653 100644 --- a/client/src/components/presentational/profile/UserTable.jsx +++ b/client/src/components/presentational/profile/UserTable.jsx @@ -1,59 +1,98 @@ import React from 'react'; import ProfileOption from '../profile/ProfileOption'; +import { + Box, + Table, + TableBody, + TableCell, + TableHead, + TableRow, +} from '@mui/material'; + const UserTable = ({ context }) => { - const { user, removeOption } = context; - - return ( -
| Name | -{user.name} | -
|---|---|
| {user.email} | -|
| Github | -{user.github} | -
| Slack | -{user.slack} | -
| Desired Roles | -
- {user.desiredRoles.map((option, index)=> ( |
-
| My Hack Nights | -
- {user.hackNights.map((option, index)=>( |
-
| Availability | -
- {user.availability.map((option, index)=>( |
-