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

Function Example

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

Source from the content-addressed store, hash-verified

2import { Button, Form, FormGroup, Label, Input } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <Form>
7 <FormGroup>
8 <Label for="exampleEmail" hidden>
9 Email
10 </Label>
11 <Input
12 type="email"
13 name="email"
14 id="exampleEmail"
15 placeholder="Email"
16 />
17 </FormGroup>{' '}
18 <FormGroup>
19 <Label for="examplePassword" hidden>
20 Password
21 </Label>
22 <Input
23 type="password"
24 name="password"
25 id="examplePassword"
26 placeholder="Password"
27 />
28 </FormGroup>{' '}
29 <Button>Submit</Button>
30 </Form>
31 );
32}
33
34export 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…