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