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

Function Example

stories/examples/Form/InputSizing.js:4–21  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

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

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…