joyent-portal/packages/ui-toolkit/src/table/usage.md

45 lines
873 B
Markdown
Raw Normal View History

```jsx
const React = require('react');
const { default: Table, Thead, Tr, Th, Tbody, Td } = require('./');
2017-11-02 15:33:43 +02:00
const { H4 } = require('../text');
<Table>
<Thead>
<Tr>
<Th xs="48" />
<Th>Name</Th>
<Th xs="150">Status</Th>
<Th xs="150">Short ID</Th>
<Th xs="48" />
</Tr>
</Thead>
<Tbody>
<Tr actionable>
2017-11-02 15:33:43 +02:00
<Td border="right" middle center>
HB
</Td>
<Td>
<H4>percona_high-ram-32_1</H4>
</Td>
<Td>Provisioning</Td>
<Td>2252839a</Td>
<Td>HB</Td>
</Tr>
<Tr>
<Td>HB</Td>
<Td>percona_high-ram-32_2</Td>
<Td>Provisioning</Td>
<Td>2252839b</Td>
<Td xs="48">HB</Td>
</Tr>
<Tr>
<Td>HB</Td>
<Td>percona_high-ram-32_3</Td>
<Td>Provisioning</Td>
<Td>2252839b</Td>
<Td>HB</Td>
</Tr>
</Tbody>
2017-11-02 15:33:43 +02:00
</Table>;
```