(props)
| 2 | import { Col, Form, FormGroup, Label, Input } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <Form> |
| 7 | <FormGroup row> |
| 8 | <Label for="exampleEmail" sm={2} size="lg"> |
| 9 | |
| 10 | </Label> |
| 11 | <Col sm={10}> |
| 12 | <Input |
| 13 | type="email" |
| 14 | name="email" |
| 15 | id="exampleEmail" |
| 16 | placeholder="lg" |
| 17 | bsSize="lg" |
| 18 | /> |
| 19 | </Col> |
| 20 | </FormGroup> |
| 21 | <FormGroup row> |
| 22 | <Label for="exampleEmail2" sm={2}> |
| 23 | |
| 24 | </Label> |
| 25 | <Col sm={10}> |
| 26 | <Input |
| 27 | type="email" |
| 28 | name="email" |
| 29 | id="exampleEmail2" |
| 30 | placeholder="default" |
| 31 | /> |
| 32 | </Col> |
| 33 | </FormGroup> |
| 34 | </Form> |
| 35 | ); |
| 36 | } |
| 37 | |
| 38 | export default Example; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…