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