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