()
| 3721 | |
| 3722 | class Example94 extends React.Component { |
| 3723 | render() { |
| 3724 | return ( |
| 3725 | <Table inverse> |
| 3726 | <thead> |
| 3727 | <tr> |
| 3728 | <th>#</th> |
| 3729 | <th>First Name</th> |
| 3730 | <th>Last Name</th> |
| 3731 | <th>Username</th> |
| 3732 | </tr> |
| 3733 | </thead> |
| 3734 | <tbody> |
| 3735 | <tr> |
| 3736 | <th scope="row">1</th> |
| 3737 | <td>Mark</td> |
| 3738 | <td>Otto</td> |
| 3739 | <td>@mdo</td> |
| 3740 | </tr> |
| 3741 | <tr> |
| 3742 | <th scope="row">2</th> |
| 3743 | <td>Jacob</td> |
| 3744 | <td>Thornton</td> |
| 3745 | <td>@fat</td> |
| 3746 | </tr> |
| 3747 | <tr> |
| 3748 | <th scope="row">3</th> |
| 3749 | <td>Larry</td> |
| 3750 | <td>the Bird</td> |
| 3751 | <td>@twitter</td> |
| 3752 | </tr> |
| 3753 | </tbody> |
| 3754 | </Table> |
| 3755 | ); |
| 3756 | } |
| 3757 | } |
| 3758 | |
| 3759 | class Example95 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected