()
| 3684 | // --------------- Table |
| 3685 | class Example93 extends React.Component { |
| 3686 | render() { |
| 3687 | return ( |
| 3688 | <Table> |
| 3689 | <thead> |
| 3690 | <tr> |
| 3691 | <th>#</th> |
| 3692 | <th>First Name</th> |
| 3693 | <th>Last Name</th> |
| 3694 | <th>Username</th> |
| 3695 | </tr> |
| 3696 | </thead> |
| 3697 | <tbody> |
| 3698 | <tr> |
| 3699 | <th scope="row">1</th> |
| 3700 | <td>Mark</td> |
| 3701 | <td>Otto</td> |
| 3702 | <td>@mdo</td> |
| 3703 | </tr> |
| 3704 | <tr> |
| 3705 | <th scope="row">2</th> |
| 3706 | <td>Jacob</td> |
| 3707 | <td>Thornton</td> |
| 3708 | <td>@fat</td> |
| 3709 | </tr> |
| 3710 | <tr> |
| 3711 | <th scope="row">3</th> |
| 3712 | <td>Larry</td> |
| 3713 | <td>the Bird</td> |
| 3714 | <td>@twitter</td> |
| 3715 | </tr> |
| 3716 | </tbody> |
| 3717 | </Table> |
| 3718 | ); |
| 3719 | } |
| 3720 | } |
| 3721 | |
| 3722 | class Example94 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected