()
| 1518 | |
| 1519 | class Example46 extends React.Component { |
| 1520 | render() { |
| 1521 | return ( |
| 1522 | <Form> |
| 1523 | <FormGroup row> |
| 1524 | <Label for="exampleEmail" sm={2}> |
| 1525 | |
| 1526 | </Label> |
| 1527 | <Col sm={10}> |
| 1528 | <Input |
| 1529 | type="email" |
| 1530 | name="email" |
| 1531 | id="exampleEmail" |
| 1532 | placeholder="with a placeholder" |
| 1533 | /> |
| 1534 | </Col> |
| 1535 | </FormGroup> |
| 1536 | <FormGroup row> |
| 1537 | <Label for="examplePassword" sm={2}> |
| 1538 | Password |
| 1539 | </Label> |
| 1540 | <Col sm={10}> |
| 1541 | <Input |
| 1542 | type="password" |
| 1543 | name="password" |
| 1544 | id="examplePassword" |
| 1545 | placeholder="password placeholder" |
| 1546 | /> |
| 1547 | </Col> |
| 1548 | </FormGroup> |
| 1549 | <FormGroup row> |
| 1550 | <Label for="exampleSelect" sm={2}> |
| 1551 | Select |
| 1552 | </Label> |
| 1553 | <Col sm={10}> |
| 1554 | <Input type="select" name="select" id="exampleSelect" /> |
| 1555 | </Col> |
| 1556 | </FormGroup> |
| 1557 | <FormGroup row> |
| 1558 | <Label for="exampleSelectMulti" sm={2}> |
| 1559 | Select Multiple |
| 1560 | </Label> |
| 1561 | <Col sm={10}> |
| 1562 | <Input |
| 1563 | type="select" |
| 1564 | name="selectMulti" |
| 1565 | id="exampleSelectMulti" |
| 1566 | multiple |
| 1567 | /> |
| 1568 | </Col> |
| 1569 | </FormGroup> |
| 1570 | <FormGroup row> |
| 1571 | <Label for="exampleText" sm={2}> |
| 1572 | Text Area |
| 1573 | </Label> |
| 1574 | <Col sm={10}> |
| 1575 | <Input type="textarea" name="text" id="exampleText" /> |
| 1576 | </Col> |
| 1577 | </FormGroup> |
nothing calls this directly
no outgoing calls
no test coverage detected