(props)
| 2 | import { Table } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <Table dark> |
| 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 | |
| 39 | export default Example; |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…