()
| 3869 | |
| 3870 | class Example98 extends React.Component { |
| 3871 | render() { |
| 3872 | return ( |
| 3873 | <Table size="sm"> |
| 3874 | <thead> |
| 3875 | <tr> |
| 3876 | <th>#</th> |
| 3877 | <th>First Name</th> |
| 3878 | <th>Last Name</th> |
| 3879 | <th>Username</th> |
| 3880 | </tr> |
| 3881 | </thead> |
| 3882 | <tbody> |
| 3883 | <tr> |
| 3884 | <th scope="row">1</th> |
| 3885 | <td>Mark</td> |
| 3886 | <td>Otto</td> |
| 3887 | <td>@mdo</td> |
| 3888 | </tr> |
| 3889 | <tr> |
| 3890 | <th scope="row">2</th> |
| 3891 | <td>Jacob</td> |
| 3892 | <td>Thornton</td> |
| 3893 | <td>@fat</td> |
| 3894 | </tr> |
| 3895 | <tr> |
| 3896 | <th scope="row">3</th> |
| 3897 | <td>Larry</td> |
| 3898 | <td>the Bird</td> |
| 3899 | <td>@twitter</td> |
| 3900 | </tr> |
| 3901 | </tbody> |
| 3902 | </Table> |
| 3903 | ); |
| 3904 | } |
| 3905 | } |
| 3906 | |
| 3907 | class Example99 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected