Skip to content

Commit e9e3f49

Browse files
committed
feat: adding web tab
1 parent e031d0b commit e9e3f49

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import {
2+
Paper,
3+
Table,
4+
TableBody,
5+
TableCell,
6+
TableContainer,
7+
TableHead,
8+
TableRow,
9+
} from "@mui/material"
10+
11+
interface DesignCheckTabProps { }
12+
13+
function DesignCheckTab({}: DesignCheckTabProps) {
14+
return (
15+
<TableContainer component={Paper} elevation={6}>
16+
<Table sx={{ minWidth: 650 }} aria-label="simple table" size={"small"}>
17+
<TableHead>
18+
<TableRow>
19+
<TableCell sx={{ width: "28%" }} align="center">
20+
Component
21+
</TableCell>
22+
<TableCell sx={{ width: "28%" }} align="center">
23+
Calculation
24+
</TableCell>
25+
<TableCell sx={{ width: "40%" }} align="center">
26+
Is Valid
27+
</TableCell>
28+
<TableCell sx={{ width: "4%" }}></TableCell>
29+
</TableRow>
30+
</TableHead>
31+
<TableBody>
32+
33+
</TableBody>
34+
</Table>
35+
</TableContainer>
36+
)
37+
}
38+
39+
export default DesignCheckTab

0 commit comments

Comments
 (0)