small improvements to augmentation page.

This commit is contained in:
Olivier Gagnon
2021-09-25 02:42:21 -04:00
parent 8b15adda8a
commit 4254cc2807
3 changed files with 151 additions and 139 deletions
+7 -4
View File
@@ -4,15 +4,18 @@ import { OwnedSourceFiles } from "./OwnedSourceFiles";
import List from "@mui/material/List";
import Typography from "@mui/material/Typography";
import Box from "@mui/material/Box";
export function SourceFiles(): React.ReactElement {
return (
<>
<Typography variant="h4">Source Files</Typography>
<List dense>
<SourceFileMinus1 />
<OwnedSourceFiles />
</List>
<Box mx={2}>
<List dense>
<SourceFileMinus1 />
<OwnedSourceFiles />
</List>
</Box>
</>
);
}