File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
exporter/SynthesisFusionAddin/web/src/ui Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments