()
| 1860 | |
| 1861 | class Example51 extends React.Component { |
| 1862 | render() { |
| 1863 | return ( |
| 1864 | <Form> |
| 1865 | <FormGroup> |
| 1866 | <Label for="exampleEmail" hidden> |
| 1867 | |
| 1868 | </Label> |
| 1869 | <Input |
| 1870 | type="email" |
| 1871 | name="email" |
| 1872 | id="exampleEmail" |
| 1873 | placeholder="Email" |
| 1874 | /> |
| 1875 | </FormGroup>{' '} |
| 1876 | <FormGroup> |
| 1877 | <Label for="examplePassword" hidden> |
| 1878 | Password |
| 1879 | </Label> |
| 1880 | <Input |
| 1881 | type="password" |
| 1882 | name="password" |
| 1883 | id="examplePassword" |
| 1884 | placeholder="Password" |
| 1885 | /> |
| 1886 | </FormGroup>{' '} |
| 1887 | <Button>Submit</Button> |
| 1888 | </Form> |
| 1889 | ); |
| 1890 | } |
| 1891 | } |
| 1892 | |
| 1893 | const Example52 = (props: any) => { |
nothing calls this directly
no outgoing calls
no test coverage detected