()
| 4948 | |
| 4949 | class Example120 extends React.Component<any, any> { |
| 4950 | render() { |
| 4951 | return ( |
| 4952 | <Table borderless> |
| 4953 | <thead> |
| 4954 | <tr> |
| 4955 | <th>#</th> |
| 4956 | <th>First Name</th> |
| 4957 | <th>Last Name</th> |
| 4958 | <th>Username</th> |
| 4959 | </tr> |
| 4960 | </thead> |
| 4961 | <tbody> |
| 4962 | <tr> |
| 4963 | <th scope="row">1</th> |
| 4964 | <td>Mark</td> |
| 4965 | <td>Otto</td> |
| 4966 | <td>@mdo</td> |
| 4967 | </tr> |
| 4968 | <tr> |
| 4969 | <th scope="row">2</th> |
| 4970 | <td>Jacob</td> |
| 4971 | <td>Thornton</td> |
| 4972 | <td>@fat</td> |
| 4973 | </tr> |
| 4974 | <tr> |
| 4975 | <th scope="row">3</th> |
| 4976 | <td>Larry</td> |
| 4977 | <td>the Bird</td> |
| 4978 | <td>@twitter</td> |
| 4979 | </tr> |
| 4980 | </tbody> |
| 4981 | </Table> |
| 4982 | ); |
| 4983 | } |
| 4984 | } |
| 4985 | |
| 4986 | class Example121 extends React.Component<any, any> { |
nothing calls this directly
no outgoing calls
no test coverage detected