MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / Example

Function Example

stories/examples/Table/Responsive.js:4–49  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { Table } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <Table responsive>
7 <thead>
8 <tr>
9 <th>#</th>
10 <th>Table heading</th>
11 <th>Table heading</th>
12 <th>Table heading</th>
13 <th>Table heading</th>
14 <th>Table heading</th>
15 <th>Table heading</th>
16 </tr>
17 </thead>
18 <tbody>
19 <tr>
20 <th scope="row">1</th>
21 <td>Table cell</td>
22 <td>Table cell</td>
23 <td>Table cell</td>
24 <td>Table cell</td>
25 <td>Table cell</td>
26 <td>Table cell</td>
27 </tr>
28 <tr>
29 <th scope="row">2</th>
30 <td>Table cell</td>
31 <td>Table cell</td>
32 <td>Table cell</td>
33 <td>Table cell</td>
34 <td>Table cell</td>
35 <td>Table cell</td>
36 </tr>
37 <tr>
38 <th scope="row">3</th>
39 <td>Table cell</td>
40 <td>Table cell</td>
41 <td>Table cell</td>
42 <td>Table cell</td>
43 <td>Table cell</td>
44 <td>Table cell</td>
45 </tr>
46 </tbody>
47 </Table>
48 );
49}
50
51export default Example;
52

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…