()
| 1839 | |
| 1840 | class Example50 extends React.Component { |
| 1841 | render() { |
| 1842 | return ( |
| 1843 | <Form> |
| 1844 | <Input placeholder="lg" bsSize="lg" /> |
| 1845 | <Input placeholder="default" /> |
| 1846 | <Input placeholder="sm" bsSize="sm" /> |
| 1847 | <Input type="select" bsSize="lg"> |
| 1848 | <option>Large Select</option> |
| 1849 | </Input> |
| 1850 | <Input type="select"> |
| 1851 | <option>Default Select</option> |
| 1852 | </Input> |
| 1853 | <Input type="select" bsSize="sm"> |
| 1854 | <option>Small Select</option> |
| 1855 | </Input> |
| 1856 | </Form> |
| 1857 | ); |
| 1858 | } |
| 1859 | } |
| 1860 | |
| 1861 | class Example51 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected