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

Method render

types/reactstrap-tests.tsx:1664–1695  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1662
1663class Example48 extends React.Component {
1664 render() {
1665 return (
1666 <Form>
1667 <FormGroup color="success">
1668 <Label for="exampleEmail">Input with success</Label>
1669 <Input state="success" />
1670 <FormFeedback>Success! You did it!</FormFeedback>
1671 <FormText color="muted">
1672 Example help text that remains unchanged.
1673 </FormText>
1674 </FormGroup>
1675 <FormGroup color="warning">
1676 <Label for="examplePassword">Input with warning</Label>
1677 <Input state="warning" />
1678 <FormFeedback>
1679 Whoops, check your formatting and try again.
1680 </FormFeedback>
1681 <FormText color="muted">
1682 Example help text that remains unchanged.
1683 </FormText>
1684 </FormGroup>
1685 <FormGroup color="danger">
1686 <Label for="examplePassword">Input with danger</Label>
1687 <Input state="danger" />
1688 <FormFeedback>Oh noes! that name is already taken</FormFeedback>
1689 <FormText color="muted">
1690 Example help text that remains unchanged.
1691 </FormText>
1692 </FormGroup>
1693 </Form>
1694 );
1695 }
1696}
1697
1698class Example49 extends React.Component {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected