(props)
| 2 | import { InputGroup, InputGroupText, Input } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <InputGroup size="lg"> |
| 8 | <InputGroupText>@lg</InputGroupText> |
| 9 | <Input /> |
| 10 | </InputGroup> |
| 11 | <br /> |
| 12 | <InputGroup> |
| 13 | <InputGroupText>@normal</InputGroupText> |
| 14 | <Input /> |
| 15 | </InputGroup> |
| 16 | <br /> |
| 17 | <InputGroup size="sm"> |
| 18 | <InputGroupText>@sm</InputGroupText> |
| 19 | <Input /> |
| 20 | </InputGroup> |
| 21 | </div> |
| 22 | ); |
| 23 | } |
| 24 | |
| 25 | export default Example; |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…