Removed unused import for TableContainer

This commit is contained in:
ebarrios
2020-09-04 10:23:51 +02:00
parent c73618c4c1
commit c9558f6570
2 changed files with 2 additions and 4 deletions
@@ -23,7 +23,6 @@ import {
Table,
TableBody,
TableCell,
TableContainer,
TableRow,
Theme,
Typography,
@@ -34,7 +34,6 @@ import {
Table,
TableBody,
TableCell,
TableContainer,
TableHead,
TableRow,
Tooltip,
@@ -89,7 +88,7 @@ const PageContents = () => {
}
return (
<TableContainer component={Paper}>
<Table component={Paper}>
<Table aria-label="GCP Projects table">
<TableHead>
<TableRow>
@@ -141,7 +140,7 @@ const PageContents = () => {
))}
</TableBody>
</Table>
</TableContainer>
</Table>
);
};