adding in mui and getting rid of other styling

This commit is contained in:
talksik
2022-06-10 07:44:52 -05:00
parent ae109400f7
commit a26565a715
12 changed files with 497 additions and 753 deletions
+21
View File
@@ -0,0 +1,21 @@
import { Grid } from '@mui/material';
import React from 'react';
export default function Terminal() {
return (
<Grid container spacing={0}>
<Grid item xs={4}>
This is the sidepanel
</Grid>
<Grid item xs={8}>
{' '}
main panel
</Grid>
<Grid item xs={12}>
This is the footer controls
</Grid>
</Grid>
);
}