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

Function Example

stories/examples/InputGroup/Sizing.js:4–23  ·  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 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
25export default Example;
26

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…