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

Method render

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

Source from the content-addressed store, hash-verified

1697
1698class Example49 extends React.Component {
1699 render() {
1700 return (
1701 <Form>
1702 <FormGroup>
1703 <Label for="exampleEmail">Static</Label>
1704 <Input>Some static value</Input>
1705 </FormGroup>
1706 <FormGroup>
1707 <Label for="exampleEmail">Email</Label>
1708 <Input
1709 type="email"
1710 name="email"
1711 id="exampleEmail"
1712 placeholder="with a placeholder"
1713 />
1714 </FormGroup>
1715 <FormGroup>
1716 <Label for="examplePassword">Password</Label>
1717 <Input
1718 type="password"
1719 name="password"
1720 id="examplePassword"
1721 placeholder="password placeholder"
1722 />
1723 </FormGroup>
1724 <FormGroup>
1725 <Label for="exampleUrl">Url</Label>
1726 <Input
1727 type="url"
1728 name="url"
1729 id="exampleUrl"
1730 placeholder="url placeholder"
1731 />
1732 </FormGroup>
1733 <FormGroup>
1734 <Label for="exampleNumber">Number</Label>
1735 <Input
1736 type="number"
1737 name="number"
1738 id="exampleNumber"
1739 placeholder="number placeholder"
1740 />
1741 </FormGroup>
1742 <FormGroup>
1743 <Label for="exampleDatetime">Datetime</Label>
1744 <Input
1745 type="datetime"
1746 name="datetime"
1747 id="exampleDatetime"
1748 placeholder="datetime placeholder"
1749 />
1750 </FormGroup>
1751 <FormGroup>
1752 <Label for="exampleDate">Date</Label>
1753 <Input
1754 type="date"
1755 name="date"
1756 id="exampleDate"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected