()
| 3758 | |
| 3759 | class Example95 extends React.Component { |
| 3760 | render() { |
| 3761 | return ( |
| 3762 | <Table striped> |
| 3763 | <thead> |
| 3764 | <tr> |
| 3765 | <th>#</th> |
| 3766 | <th>First Name</th> |
| 3767 | <th>Last Name</th> |
| 3768 | <th>Username</th> |
| 3769 | </tr> |
| 3770 | </thead> |
| 3771 | <tbody> |
| 3772 | <tr> |
| 3773 | <th scope="row">1</th> |
| 3774 | <td>Mark</td> |
| 3775 | <td>Otto</td> |
| 3776 | <td>@mdo</td> |
| 3777 | </tr> |
| 3778 | <tr> |
| 3779 | <th scope="row">2</th> |
| 3780 | <td>Jacob</td> |
| 3781 | <td>Thornton</td> |
| 3782 | <td>@fat</td> |
| 3783 | </tr> |
| 3784 | <tr> |
| 3785 | <th scope="row">3</th> |
| 3786 | <td>Larry</td> |
| 3787 | <td>the Bird</td> |
| 3788 | <td>@twitter</td> |
| 3789 | </tr> |
| 3790 | </tbody> |
| 3791 | </Table> |
| 3792 | ); |
| 3793 | } |
| 3794 | } |
| 3795 | |
| 3796 | class Example96 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected