@bootstrap-styled/v4
Version:
twbs/bootstrap V4 UI Components made with bootstrap-styled. Work with css-in-js, react, styled-components, and Bootstrap Styled utilities.
34 lines (31 loc) • 483 B
Markdown
`<Tbody />` component example:
```js
import {
Table,
Tr,
Tbody,
Td,
} from '$PACKAGE_NAME';
<Table>
<Tbody>
<Tr>
<Td scope="row">1</Td>
<Td>Mark</Td>
<Td>Otto</Td>
<Td>@mdo</Td>
</Tr>
<Tr>
<Td scope="row">2</Td>
<Td>Jacob</Td>
<Td>Thornton</Td>
<Td>@fat</Td>
</Tr>
<Tr>
<Td scope="row">3</Td>
<Td>Larry</Td>
<Td>the Bird</Td>
<Td>@twitter</Td>
</Tr>
</Tbody>
</Table>
```