(props)
| 2 | import { Form, FormGroup, Label, Input } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <Form> |
| 7 | <FormGroup check inline> |
| 8 | <Input type="checkbox" /> |
| 9 | <Label check>Some input</Label> |
| 10 | </FormGroup> |
| 11 | <FormGroup check inline> |
| 12 | <Input type="checkbox" /> |
| 13 | <Label check>Some other input</Label> |
| 14 | </FormGroup> |
| 15 | </Form> |
| 16 | ); |
| 17 | } |
| 18 | |
| 19 | export default Example; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…