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

Function Example

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

Source from the content-addressed store, hash-verified

2import { Form, FormGroup, Label, Input } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <Form>
7 <FormGroup check inline>
8 <Input type="checkbox" />
9 <Label check>Some input</Label>
10 </FormGroup>
11 <FormGroup check inline>
12 <Input type="checkbox" />
13 <Label check>Some other input</Label>
14 </FormGroup>
15 </Form>
16 );
17}
18
19export 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…