()
| 3832 | |
| 3833 | class Example97 extends React.Component { |
| 3834 | render() { |
| 3835 | return ( |
| 3836 | <Table hover> |
| 3837 | <thead> |
| 3838 | <tr> |
| 3839 | <th>#</th> |
| 3840 | <th>First Name</th> |
| 3841 | <th>Last Name</th> |
| 3842 | <th>Username</th> |
| 3843 | </tr> |
| 3844 | </thead> |
| 3845 | <tbody> |
| 3846 | <tr> |
| 3847 | <th scope="row">1</th> |
| 3848 | <td>Mark</td> |
| 3849 | <td>Otto</td> |
| 3850 | <td>@mdo</td> |
| 3851 | </tr> |
| 3852 | <tr> |
| 3853 | <th scope="row">2</th> |
| 3854 | <td>Jacob</td> |
| 3855 | <td>Thornton</td> |
| 3856 | <td>@fat</td> |
| 3857 | </tr> |
| 3858 | <tr> |
| 3859 | <th scope="row">3</th> |
| 3860 | <td>Larry</td> |
| 3861 | <td>the Bird</td> |
| 3862 | <td>@twitter</td> |
| 3863 | </tr> |
| 3864 | </tbody> |
| 3865 | </Table> |
| 3866 | ); |
| 3867 | } |
| 3868 | } |
| 3869 | |
| 3870 | class Example98 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected