()
| 3795 | |
| 3796 | class Example96 extends React.Component { |
| 3797 | render() { |
| 3798 | return ( |
| 3799 | <Table bordered> |
| 3800 | <thead> |
| 3801 | <tr> |
| 3802 | <th>#</th> |
| 3803 | <th>First Name</th> |
| 3804 | <th>Last Name</th> |
| 3805 | <th>Username</th> |
| 3806 | </tr> |
| 3807 | </thead> |
| 3808 | <tbody> |
| 3809 | <tr> |
| 3810 | <th scope="row">1</th> |
| 3811 | <td>Mark</td> |
| 3812 | <td>Otto</td> |
| 3813 | <td>@mdo</td> |
| 3814 | </tr> |
| 3815 | <tr> |
| 3816 | <th scope="row">2</th> |
| 3817 | <td>Jacob</td> |
| 3818 | <td>Thornton</td> |
| 3819 | <td>@fat</td> |
| 3820 | </tr> |
| 3821 | <tr> |
| 3822 | <th scope="row">3</th> |
| 3823 | <td>Larry</td> |
| 3824 | <td>the Bird</td> |
| 3825 | <td>@twitter</td> |
| 3826 | </tr> |
| 3827 | </tbody> |
| 3828 | </Table> |
| 3829 | ); |
| 3830 | } |
| 3831 | } |
| 3832 | |
| 3833 | class Example97 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected