nice main thing coming along

This commit is contained in:
talksik
2022-06-11 13:27:50 -05:00
parent f2f930fbf1
commit a1ffe5249c
2 changed files with 58 additions and 2 deletions
+12 -2
View File
@@ -1,6 +1,7 @@
import { Box, Container, Grid } from '@mui/material';
import { ConversationList } from './ConversationList';
import MainPanel from './MainPanel';
import Navbar from './Navbar';
import NewConversationDialog from './NewConversationDialog';
import React from 'react';
@@ -40,8 +41,17 @@ export default function Terminal() {
</Box>
</Grid>
<Grid item xs={8} sx={{ bgcolor: 'white' }}>
main panel
<Grid
item
xs={8}
sx={{
backgroundColor: 'white',
display: 'flex',
flexDirection: 'column',
maxHeight: '100vh',
}}
>
<MainPanel />
</Grid>
</Grid>