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

Function Example

stories/examples/Table/Borderless.js:4–37  ·  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 borderless>
7 <thead>
8 <tr>
9 <th>#</th>
10 <th>First Name</th>
11 <th>Last Name</th>
12 <th>Username</th>
13 </tr>
14 </thead>
15 <tbody>
16 <tr>
17 <th scope="row">1</th>
18 <td>Mark</td>
19 <td>Otto</td>
20 <td>@mdo</td>
21 </tr>
22 <tr>
23 <th scope="row">2</th>
24 <td>Jacob</td>
25 <td>Thornton</td>
26 <td>@fat</td>
27 </tr>
28 <tr>
29 <th scope="row">3</th>
30 <td>Larry</td>
31 <td>the Bird</td>
32 <td>@twitter</td>
33 </tr>
34 </tbody>
35 </Table>
36 );
37}
38
39export default Example;
40

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…