MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / Example

Function Example

stories/examples/InputGroup/Addon.js:4–24  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { InputGroup, InputGroupText, Input } from 'reactstrap';
3
4function 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
26export default Example;
27

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…