# TableBody Defines the body section of Table. ## Import ```tsx import { TableBody } from '@coinbase/cds-web/tables/TableBody' ``` ## Examples ### Basic usage ```tsx live Header Content
``` ### Loading State Example ```tsx live Loading content...
``` ### Multiple Rows Example ```tsx live Name Role John Doe Developer Jane Smith Designer
``` ## Props | Prop | Type | Required | Default | Description | | --- | --- | --- | --- | --- | | `as` | `div \| tbody \| tfoot \| thead` | No | `undefined` | Internal only | | `className` | `string` | No | `-` | - | | `testID` | `string` | No | `-` | Used to locate this element in unit and end-to-end tests. Under the hood, testID translates to data-testid on Web. On Mobile, testID stays the same - testID |