TableBody
Overview
TableBody is used to encapsulate a set of table rows (elements), indicating that they comprise the body of the table such as TableCell, TableRow contained inside and grouping the body content in Table.
Please refer to this for more information: https://mui.com/material-ui/api/table-body/.
Import
import { TableContainer, Table, TableBody } from '@mui/material';
The above source will be imported automatically after dragging and dropping the Basic Component to the UI Preview Panel.
Property
Property:
Name | Default | Description |
Id-name | Placeholder: <id-name> | The Id-name of the created component. |
State | State: Normal | The State of the created Component. |
Size | Size Unit: Px | The component Size of Height with many selectable Size Units. |
General | The component General includes Background. | |
Advanced Style | The component Advanced Style includes Classname and Inline Style addition. |
Code Sample:
<TableBody
sx={{':active': {'height': '150px','backgroundColor': '#ff0000ff',},}}>
</TableBody>
Related Components