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

Function Example

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

Source from the content-addressed store, hash-verified

2import { Col, Form, FormGroup, Label, Input } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <Form>
7 <FormGroup row>
8 <Label for="exampleEmail" sm={2} size="lg">
9 Email
10 </Label>
11 <Col sm={10}>
12 <Input
13 type="email"
14 name="email"
15 id="exampleEmail"
16 placeholder="lg"
17 bsSize="lg"
18 />
19 </Col>
20 </FormGroup>
21 <FormGroup row>
22 <Label for="exampleEmail2" sm={2}>
23 Email
24 </Label>
25 <Col sm={10}>
26 <Input
27 type="email"
28 name="email"
29 id="exampleEmail2"
30 placeholder="default"
31 />
32 </Col>
33 </FormGroup>
34 </Form>
35 );
36}
37
38export 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…