Skip to content

Commit 4e43f15

Browse files
committed
file deleting particularly in app/src/left
1 parent 016f907 commit 4e43f15

File tree

9 files changed

+30
-586
lines changed

9 files changed

+30
-586
lines changed

app/src/components/left/ContentArea.tsx

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
/* eslint-disable max-len */
2-
import { Box } from '@mui/material';
3-
import ComponentsContainer from './ComponentsContainer';
4-
import ElementsContainer from './ElementsContainer';
2+
import Box from '@mui/material/Box';
53
import ModulePanel from './ModulePanel';
64
import React from 'react';
75
import RoomsContainer from './RoomsContainer';
86
import Settings from './Settings';
97
import CreateContainer from './CreateContainer';
10-
import ProfileContainer from '../../containers/ProfileContainer';
118

129
interface ContentAreaProps {
1310
activeTab: number | null;
@@ -36,14 +33,7 @@ const TabPanel: React.FC<{
3633
);
3734
};
3835

39-
const panels = [
40-
<ModulePanel />,
41-
<CreateContainer />,
42-
<RoomsContainer />,
43-
<ElementsContainer />,
44-
<ProfileContainer/>,
45-
<Settings />
46-
];
36+
const panels = [<ModulePanel />, <CreateContainer />, <RoomsContainer />];
4737

4838
/**
4939
* ContentArea component that renders different panels based on the active tab.

0 commit comments

Comments
 (0)