()
| 1634 | |
| 1635 | class Example47 extends React.Component { |
| 1636 | render() { |
| 1637 | return ( |
| 1638 | <Form> |
| 1639 | <FormGroup> |
| 1640 | <Label for="exampleEmail">Email</Label>{' '} |
| 1641 | <Input |
| 1642 | type="email" |
| 1643 | name="email" |
| 1644 | id="exampleEmail" |
| 1645 | placeholder="something@idk.cool" |
| 1646 | /> |
| 1647 | </FormGroup>{' '} |
| 1648 | <FormGroup> |
| 1649 | <Label for="examplePassword">Password</Label>{' '} |
| 1650 | <Input |
| 1651 | type="password" |
| 1652 | name="password" |
| 1653 | id="examplePassword" |
| 1654 | placeholder="don't tell!" |
| 1655 | /> |
| 1656 | </FormGroup>{' '} |
| 1657 | <Button>Submit</Button> |
| 1658 | </Form> |
| 1659 | ); |
| 1660 | } |
| 1661 | } |
| 1662 | |
| 1663 | class Example48 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected