(props)
| 2 | import { Form, Input } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <Form> |
| 7 | <Input className="mb-3" placeholder="lg" bsSize="lg" /> |
| 8 | <Input className="mb-3" placeholder="default" /> |
| 9 | <Input className="mb-3" placeholder="sm" bsSize="sm" /> |
| 10 | <Input className="mb-3" type="select" bsSize="lg"> |
| 11 | <option>Large Select</option> |
| 12 | </Input> |
| 13 | <Input className="mb-3" type="select"> |
| 14 | <option>Default Select</option> |
| 15 | </Input> |
| 16 | <Input className="mb-3" type="select" bsSize="sm"> |
| 17 | <option>Small Select</option> |
| 18 | </Input> |
| 19 | </Form> |
| 20 | ); |
| 21 | } |
| 22 | |
| 23 | export default Example; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…