+ );
+};
- export default MeetingsPanel;
\ No newline at end of file
+export default MeetingsPanel;
\ No newline at end of file
diff --git a/src/components/home/ShortCuts.tsx b/src/components/home/ShortCuts.tsx
index 2ea7277..61afba9 100644
--- a/src/components/home/ShortCuts.tsx
+++ b/src/components/home/ShortCuts.tsx
@@ -1,43 +1,43 @@
-import PeopleIcon from '@mui/icons-material/People';
-import AddIcon from '@mui/icons-material/Add';
-import PhoneEnabledIcon from '@mui/icons-material/PhoneEnabled';
-import CircleIcon from '@mui/icons-material/Circle';
+import PeopleIcon from "@mui/icons-material/People";
+import AddIcon from "@mui/icons-material/Add";
+import PhoneEnabledIcon from "@mui/icons-material/PhoneEnabled";
+import CircleIcon from "@mui/icons-material/Circle";
import Button from "@mui/material/Button";
import Grid from "@mui/material/Grid";
const ShortCuts: React.FC = () => {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
- };
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
- export default ShortCuts;
\ No newline at end of file
+export default ShortCuts;
\ No newline at end of file
diff --git a/src/components/login/Login.tsx b/src/components/login/Login.tsx
index ba95b2e..4da970e 100644
--- a/src/components/login/Login.tsx
+++ b/src/components/login/Login.tsx
@@ -1,11 +1,11 @@
import Container from "@mui/material/Container";
const Login: React.FC = () => {
- return (
-
+ return (
+
Login
-
- );
- };
+
+ );
+};
- export default Login;
\ No newline at end of file
+export default Login;
\ No newline at end of file
diff --git a/src/components/sidebar/Sidebar.tsx b/src/components/sidebar/Sidebar.tsx
index 08cb47b..8a544bb 100644
--- a/src/components/sidebar/Sidebar.tsx
+++ b/src/components/sidebar/Sidebar.tsx
@@ -1,13 +1,20 @@
-import { Divider, Drawer, List, ListItem, ListSubheader } from "@mui/material";
+import {
+ Divider,
+ Drawer,
+ List,
+ ListItem,
+ ListSubheader,
+ Toolbar,
+} from "@mui/material";
import GroupSelect from "./GroupSelect";
import SidebarUser, { SidebarUserObj } from "./SidebarUser";
// TODO: toolbar on top of sidebar since it goes under the navbar
-const drawerWidth = 240;
+const drawerWidth = 200;
interface Props {
- users: SidebarUserObj[],
+ users: SidebarUserObj[];
}
const Sidebar: React.FC = ({ users }: Props) => {
@@ -15,22 +22,21 @@ const Sidebar: React.FC = ({ users }: Props) => {
+
{users.map((user) => (
-
+
))}
@@ -39,4 +45,4 @@ const Sidebar: React.FC = ({ users }: Props) => {
);
};
-export default Sidebar;
\ No newline at end of file
+export default Sidebar;